From 4ae433d4043dda6b29f191b3d9d6705a94e9bec9 Mon Sep 17 00:00:00 2001 From: Matthieu Bessat Date: Sat, 15 Jun 2024 08:51:00 +0200 Subject: [PATCH] feat: mvt decode + download tiles --- geo_tiles_assembler/.gitignore | 1 + .../download_tiles_within_bounds.py | 58 + .../plot_osm_map_with_coordinates.py | 7 +- mvt_decode/.gitignore | 1 + mvt_decode/decode.py | 10 + mvt_decode/out.json | 79224 ++++++++++++++++ mvt_decode/out.txt | 1 + 7 files changed, 79300 insertions(+), 2 deletions(-) create mode 100644 geo_tiles_assembler/download_tiles_within_bounds.py create mode 100644 mvt_decode/.gitignore create mode 100644 mvt_decode/decode.py create mode 100644 mvt_decode/out.json create mode 100644 mvt_decode/out.txt diff --git a/geo_tiles_assembler/.gitignore b/geo_tiles_assembler/.gitignore index 70b8406..2a51558 100644 --- a/geo_tiles_assembler/.gitignore +++ b/geo_tiles_assembler/.gitignore @@ -1 +1,2 @@ tiles +results/ diff --git a/geo_tiles_assembler/download_tiles_within_bounds.py b/geo_tiles_assembler/download_tiles_within_bounds.py new file mode 100644 index 0000000..c0cea94 --- /dev/null +++ b/geo_tiles_assembler/download_tiles_within_bounds.py @@ -0,0 +1,58 @@ +import requests +import os +import math + +def deg2num(lat_deg, lon_deg, zoom): + lat_rad = math.radians(lat_deg) + n = 1 << zoom + xtile = int((lon_deg + 180.0) / 360.0 * n) + ytile = int((1.0 - math.asinh(math.tan(lat_rad)) / math.pi) / 2.0 * n) + return xtile, ytile + +# around chatillon +BOUNDS = ((48.8, 2.26), (48.82, 2.32)) +BOUNDS = ((48.5, 2.1), (49.9, 2.6)) + +BASE_URL = os.getenv("SOURCE_BASE_URL") +BASE_DIR = os.getenv("OUTPUT_BASE_DIR") +LAYERS = os.getenv("LAYERS_NAMES") + +iz = 0 +for z in range(10, 15): + TILES_BOUNDS = ( + deg2num(BOUNDS[0][0], BOUNDS[0][1], z), + deg2num(BOUNDS[1][0], BOUNDS[1][1], z) + ) + + maxx = 0 + maxy = 0 + xrange = range(TILES_BOUNDS[0][0], TILES_BOUNDS[1][0]) + yrange = range(TILES_BOUNDS[1][1], TILES_BOUNDS[0][1]) + + print(TILES_BOUNDS) + print(xrange, yrange) + + iy = 0 + for y in reversed(yrange): + ix = 0 + for x in xrange: + url = f"{BASE_URL}/{LAYERS}/{z}/{x}/{y}" + dir_path = f'{BASE_DIR}/tiles/{LAYERS}/{z}/{x}' + tile_path = dir_path + f'/{y}' + img_data = 0 + print(tile_path) + if not os.path.exists(tile_path): + print(url) + res = requests.get(url) + if res.status_code >= 300: + print(res.content) + exit() + img_data = res.content + os.makedirs(dir_path, exist_ok=True) + with open(tile_path, 'wb') as handler: + handler.write(img_data) + ix += 1 + iy += 1 + iz += 1 + +print("DONE") diff --git a/geo_tiles_assembler/plot_osm_map_with_coordinates.py b/geo_tiles_assembler/plot_osm_map_with_coordinates.py index 62e5cd3..166a762 100644 --- a/geo_tiles_assembler/plot_osm_map_with_coordinates.py +++ b/geo_tiles_assembler/plot_osm_map_with_coordinates.py @@ -12,12 +12,15 @@ def deg2num(lat_deg, lon_deg, zoom): ytile = int((1.0 - math.asinh(math.tan(lat_rad)) / math.pi) / 2.0 * n) return xtile, ytile -BOUNDS = ((49.17, 1.31), (49.18, 1.35)) +#BOUNDS = ((49.17, 1.31), (49.18, 1.35)) +BOUNDS = ((48.7, 2.2), (48.8, 2.3)) +BOUNDS = ((48.8, 2.26), (48.82, 2.32)) + DEFAULT_HEADERS = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; rv:127.0) Gecko/20100101 Firefox/127.0"} iz = 0 -for z in range(16, 17): +for z in range(14, 15): # https://tile.openstreetmap.org/11/1029/700.png # 1029, 1030 going to the est, increasing the longitude angle (x) # 700, 701, going to the south, deacreasing the flatitude latitude angle (y) diff --git a/mvt_decode/.gitignore b/mvt_decode/.gitignore new file mode 100644 index 0000000..f7275bb --- /dev/null +++ b/mvt_decode/.gitignore @@ -0,0 +1 @@ +venv/ diff --git a/mvt_decode/decode.py b/mvt_decode/decode.py new file mode 100644 index 0000000..291627d --- /dev/null +++ b/mvt_decode/decode.py @@ -0,0 +1,10 @@ +import mapbox_vector_tile +import json +import sys +with open(sys.argv[1], 'rb') as f: + data = f.read() +decoded_data = mapbox_vector_tile.decode(data) + +print(json.dumps(decoded_data)) +with open('out.txt', 'w') as f: + f.write(repr(decoded_data)) diff --git a/mvt_decode/out.json b/mvt_decode/out.json new file mode 100644 index 0000000..d4f30c8 --- /dev/null +++ b/mvt_decode/out.json @@ -0,0 +1,79224 @@ +{ + "address": { + "extent": 4096, + "version": 2, + "features": [ + { + "geometry": { + "type": "Point", + "coordinates": [ + 3602, + 48 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "48", + "building_ref": "IMB/92040/C/8987", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95193, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 1514 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "55", + "building_ref": "IMB/92040/C/8773", + "street_ext": "B", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99311, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3551, + 1819 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "2", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99303, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 1742 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "6", + "building_ref": "IMB/92040/S/9534", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97515, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 1707 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "8", + "building_ref": "IMB/92040/S/9103", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100395, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3578, + 1984 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "51", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95161, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 2135 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "42", + "building_ref": "IMB/92040/S/8809", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95168, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 2226 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "38", + "building_ref": "IMB/92040/C/8804", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95169, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 2047 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "46", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95099, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 2527 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "29", + "building_ref": "IMB/92040/S/8661", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95100, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 2883 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "22", + "building_ref": "IMB/92040/S/8959", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100288, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 2979 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "38", + "building_ref": "IMB/92040/S/9341", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100289, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 3096 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "37", + "building_ref": "IMB/92040/C/9354", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100290, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 3452 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "15", + "building_ref": "IMB/92040/S/8594", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97516, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 2979 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "38", + "building_ref": "IMB/92040/S/9328", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95170, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 3096 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "39", + "building_ref": "IMB/92040/C/9343", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95171, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 3452 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "13", + "building_ref": "IMB/92040/S/8593", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100396, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3573, + 2792 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "23", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97626, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3573, + 2607 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "27", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99370, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3602, + 2883 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "20", + "building_ref": "IMB/92040/S/8957", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99395, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3602, + 3437 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "11", + "building_ref": "IMB/92040/C/8591", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97651, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 3101 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "39", + "building_ref": "IMB/92040/S/9344", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100718, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 2990 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "40", + "building_ref": "IMB/92040/X/00KE", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99468, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 3209 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "39", + "building_ref": "IMB/92040/X/00KG", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97776, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 3277 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "39", + "building_ref": "IMB/92040/S/9345", + "street_ext": "T", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95572, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 3445 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "9", + "building_ref": "IMB/92040/S/8598", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95573, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 2794 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "21", + "building_ref": "IMB/92040/S/8958", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100717, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3624, + 2627 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "25", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97785, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 2216 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "36", + "building_ref": "IMB/92040/C/8803", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100716, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3600, + 1891 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "56", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95189, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3607, + 2017 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "49", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97755, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3602, + 1682 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "10", + "building_ref": "IMB/92040/S/9105", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97650, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 1656 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "12", + "building_ref": "IMB/92040/S/9107", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100715, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 1839 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "1", + "building_ref": "IMB/92040/S/9169", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97775, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3626, + 1776 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "3", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99479, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 1636 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "14", + "building_ref": "IMB/92040/S/9109", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98159, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 1600 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "16", + "building_ref": "IMB/92040/S/9059", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95622, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 2236 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "34", + "building_ref": "IMB/92040/S/8801", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95623, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3652, + 1913 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "54", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95612, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3648, + 2647 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "32", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95611, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3655, + 2644 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "30", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98185, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 2903 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "18", + "building_ref": "IMB/92040/S/8955", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98160, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 3101 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "41", + "building_ref": "IMB/92040/C/9348", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95594, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 56, + 2191 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "141", + "building_ref": "IMB/92040/C/0402", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 82229, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -8, + 1984 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "5", + "building_ref": "IMB/92040/X/00RQ", + "street_ext": "D", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 81589, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -8, + 1668 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "20", + "building_ref": "IMB/92040/C/9887", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 81588, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -13, + 1099 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "24", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82192, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -37, + 1144 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "26", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82036, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -51, + 769 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480418", + "street_number": "1", + "street": "IMPASSE DES BRILLANTS", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 81412, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 13, + 1061 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "22", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82215, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 13, + 873 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "15", + "building_ref": "IMB/92048/S/008I", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 81920, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 67, + 985 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "18", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82245, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 74, + 966 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "16", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82259, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 155, + 683 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "11", + "street_ext": "B", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82875, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 170, + 1272 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "2", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83373, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 149, + 846 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "12", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82677, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 149, + 846 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "17", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82868, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 149, + 846 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "20", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82869, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 131, + 1275 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "34", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82817, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 127, + 830 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "13", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82608, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 104, + 919 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237156", + "street_number": "14", + "street": "RUE DE PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82798, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 120, + 1790 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "14", + "building_ref": "IMB/92040/C/9884", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 82598, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 167, + 1305 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "1", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82698, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 176, + 1336 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237285", + "street_number": "1", + "street": "SENTIER DES PUCELLES", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82905, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 184, + 2285 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "139", + "building_ref": "ID-92040000005O", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87532, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 235, + 1340 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237285", + "street_number": "3", + "street": "SENTIER DES PUCELLES", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83026, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 267, + 1098 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "7", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83217, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 269, + 603 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "7", + "building_ref": "IMB/92048/S/008N", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83222, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 248, + 666 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "9", + "building_ref": "IMB/92048/S/008O", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87678, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 248, + 470 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "3", + "building_ref": "IMB/92048/S/008K", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83035, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 250, + 1128 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "6", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83209, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 226, + 1193 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "4", + "street_ext": "B", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83126, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 221, + 1181 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "4", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87607, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 193, + 1232 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "3", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82992, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 183, + 758 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "11", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82978, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 205, + 112 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480170", + "street_number": "25", + "building_ref": "IMB/92048/S/01E0", + "street": "AVENUE AUGUSTE RODIN", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83396, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 281, + 851 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "38", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83154, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 312, + 568 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "5", + "building_ref": "IMB/92048/S/008M", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83184, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 307, + 261 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "5", + "street_ext": "T", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83249, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 320, + 878 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "40", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87894, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 325, + 1006 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "9", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83467, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 323, + 993 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "10", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83915, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 341, + 961 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "11", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83289, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 343, + 1063 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "8", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83290, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 359, + 927 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "12", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83304, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 355, + 376 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470B", + "street_number": "5", + "building_ref": "IMB/92048/S/00RH", + "street_ext": "B", + "street": "R DU LT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83938, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 355, + 60 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480170", + "street_number": "29", + "building_ref": "IMB/92048/S/01ET", + "street": "AVENUE AUGUSTE RODIN", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83489, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 334, + -1 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480170", + "street_number": "27", + "building_ref": "IMB/92048/S/01EA", + "street": "AVENUE AUGUSTE RODIN", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83468, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 376, + 14 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480170", + "street_number": "31", + "building_ref": "IMB/92048/S/01F9", + "street": "AVENUE AUGUSTE RODIN", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83312, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 442, + -56 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480170", + "street_number": "44", + "street": "AVENUE AUGUSTE RODIN", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84134, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 441, + 29 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480170", + "street_number": "33", + "building_ref": "IMB/92048/C/01FE", + "street": "AVENUE AUGUSTE RODIN", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83895, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 419, + 193 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "7", + "building_ref": "IMB/92048/X/02JE", + "street_ext": "B", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84226, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 419, + 438 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "3", + "building_ref": "IMB/92048/S/00RE", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87973, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 419, + 411 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "5", + "building_ref": "IMB/92048/S/00RI", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84227, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 426, + 553 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "2", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83416, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 426, + 553 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920480885", + "street_number": "1", + "street": "RUE D ESTIENNE D ORVES", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84247, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 441, + 268 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "7", + "building_ref": "IMB/92048/C/ZLFZ", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83896, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 450, + 453 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "3", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84141, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 450, + 660 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "36", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84139, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 450, + 660 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "42", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84140, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 434, + 790 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "15", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88122, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 448, + 1105 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "125", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88144, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 431, + 1160 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "127", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83881, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 421, + 1186 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "129", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88118, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 400, + 1219 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "131", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83339, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 397, + 1283 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "135", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87942, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 400, + 854 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "14", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83711, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 398, + 467 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470B", + "street_number": "1", + "building_ref": "IMB/92048/S/00R8", + "street_ext": "B", + "street": "R DU LT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87947, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 398, + 314 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "7", + "building_ref": "IMB/92048/X/02Z4", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84111, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 398, + 535 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920233177", + "street_number": "1", + "building_ref": "IMB/92023/X/00UC", + "street": "RUE D ESTIENNE D ORVES", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84112, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 379, + 892 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234127", + "street_number": "13", + "street": "ALLEE GAMBRINUS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87937, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 400, + 2069 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "7", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83709, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 400, + 2069 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "10", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83710, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 400, + 2069 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "0", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87956, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 398, + 1643 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "18", + "building_ref": "IMB/92040/C/9886", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87948, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 397, + 1330 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "137", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83696, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 399, + 1358 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "139", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83708, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 428, + 1453 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "136", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83417, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 312, + 1836 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406176", + "street_number": "16", + "building_ref": "IMB/92040/C/9885", + "street": "CHEMIN DES MONTQUARTIERS", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83903, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 291, + 2283 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "139", + "building_ref": "IMB/92040/C/0405", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87805, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 633, + 1552 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "133", + "building_ref": "IMB/92040/S/8517", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88538, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 614, + 1346 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "21", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88521, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 609, + 1377 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "17", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84398, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 611, + 1393 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "137", + "building_ref": "IMB/92040/S/8509", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84911, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 590, + 1511 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "135", + "building_ref": "IMB/92040/S/8507", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84887, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 591, + 1343 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "19", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84393, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 568, + 1470 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "137", + "building_ref": "IMB/92040/S/8498", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84816, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 547, + 1460 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "139", + "building_ref": "IMB/92040/S/8510", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84797, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 477, + 1341 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "204", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83819, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 505, + 1391 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "141", + "building_ref": "IMB/92040/S/8512", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88292, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 526, + 1426 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "139", + "building_ref": "IMB/92040/S/8511", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84678, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 541, + 1132 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "194", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88344, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 527, + 1130 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "196", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88334, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 541, + 803 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "13", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84786, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 512, + 766 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "15", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88311, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 514, + 1162 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "196", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84474, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 510, + 1150 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "186", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83946, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 491, + 1021 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "119", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88238, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 485, + 1211 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "198", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84285, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 475, + 1240 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "200", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84265, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 476, + 1072 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "123", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84266, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 468, + 1281 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "202", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88217, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 456, + 1148 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "133", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83442, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 455, + 496 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "1", + "street_ext": "B", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84143, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 466, + 398 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "5", + "street_ext": "B", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84256, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 461, + 428 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "5", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84358, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 462, + 243 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "9", + "building_ref": "IMB/92048/S/00RJ", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84148, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 470, + 354 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "7", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84261, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 477, + 287 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "9", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83818, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 484, + 214 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "11", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84284, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 493, + 743 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "17", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84449, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 494, + 116 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "19", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83839, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 489, + 162 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470A", + "street_number": "17", + "street": "RUE LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83835, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 483, + 77 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "19", + "building_ref": "IMB/92048/C/00RA", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84279, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 462, + 167 + ] + }, + "properties": { + "insee_code": "92048", + "kosc_street_code": "920481470C", + "street_number": "17", + "building_ref": "IMB/92048/S/00R9", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "MEUDON", + "zip_code": "92190", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84366, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 567, + 1105 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "192", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84815, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 561, + 1008 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "117", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84043, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 565, + 805 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "11", + "street_ext": "B", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84046, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 596, + 990 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "115", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84900, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 638, + 974 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "113", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85569, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 658, + 823 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "11", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88665, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 697, + 1048 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "188", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85763, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 801, + 1026 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "182", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84859, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 814, + 846 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "5", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88990, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 778, + 1030 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "184", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86239, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 782, + 1297 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "9", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85232, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 772, + 839 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "7", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88905, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 732, + 831 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "9", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88866, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 761, + 1531 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "127", + "building_ref": "IMB/92040/S/8504", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86217, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 771, + 1412 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "7", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85132, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 782, + 1582 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "127", + "building_ref": "IMB/92040/C/8503", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88954, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 811, + 1419 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "5", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86493, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 718, + 1552 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "129", + "building_ref": "IMB/92040/C/8505", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84645, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 675, + 1428 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "133", + "building_ref": "IMB/92040/X/00JN", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85008, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 654, + 1552 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "131", + "building_ref": "IMB/92040/S/008G", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85578, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 996, + 1628 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "119", + "building_ref": "IMB/92040/S/8468", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87038, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 991, + 1395 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "14", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85617, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 974, + 1436 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "16", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87014, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 970, + 1349 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "13", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87011, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 957, + 1385 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "15", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85592, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 953, + 1539 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "123", + "building_ref": "IMB/92040/X/00R9", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89219, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 932, + 1623 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "121", + "building_ref": "IMB/92040/S/8499", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85431, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 932, + 1567 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "123", + "building_ref": "IMB/92040/C/8501", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85916, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 932, + 1470 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185B", + "street_number": "10", + "building_ref": "IMB/92040/S/9011", + "street": "SENTIER DES ETROITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85915, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 910, + 1496 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "123", + "building_ref": "IMB/92040/X/00RB", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85840, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 910, + 1523 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "123", + "building_ref": "IMB/92040/X/00RA", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86768, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3401, + 3944 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "77", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98802, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3408, + 3706 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "8", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97219, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3452, + 3559 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "20", + "building_ref": "IMB/92040/C/8559", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97306, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3474, + 3934 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "75", + "building_ref": "IMB/92040/X/00QM", + "street_ext": "B", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99838, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 3723 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "10", + "building_ref": "IMB/92040/C/9782", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99202, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 4007 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "75", + "building_ref": "IMB/92040/X/013K", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94952, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 3580 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "18", + "building_ref": "IMB/92040/S/8589", + "street_ext": "T", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95065, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3538, + 3743 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "12", + "building_ref": "IMB/92040/C/9783", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95079, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3536, + 3840 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "5", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100262, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3538, + 3439 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "17", + "building_ref": "IMB/92040/X/014J", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95078, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 3432 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "19", + "building_ref": "IMB/92040/S/8587", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97371, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 3376 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "21", + "building_ref": "IMB/92040/S/8561", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99997, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3448, + 3411 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "23", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94856, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3431, + 3386 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "25", + "building_ref": "IMB/92040/S/8562", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94650, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3410, + 3371 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "27", + "building_ref": "IMB/92040/S/8563", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99251, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3389, + 3340 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "29", + "building_ref": "IMB/92040/C/8577", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98784, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3389, + 3356 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "27", + "building_ref": "IMB/92040/S/8564", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97113, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3346, + 3335 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "31", + "building_ref": "IMB/92040/S/8558", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99094, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3346, + 3320 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "31", + "building_ref": "IMB/92040/C/8569", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94514, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3324, + 3305 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "31", + "building_ref": "IMB/92040/C/8570", + "street_ext": "T", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94492, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3282, + 3469 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "24", + "building_ref": "ID-920400000065", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94310, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3282, + 3284 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "33", + "building_ref": "IMB/92040/C/8572", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99054, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3239, + 3254 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "35", + "building_ref": "IMB/92040/C/8574", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97980, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3219, + 3382 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "26", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98315, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3196, + 3605 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "2", + "building_ref": "IMB/92040/X/014H", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96340, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3217, + 4111 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "2", + "building_ref": "IMB/92040/C/9614", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97913, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3239, + 4071 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "0", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97988, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3269, + 3664 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "4", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94304, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3282, + 3788 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "1", + "building_ref": "IMB/92040/C/9777", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98363, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3337, + 3677 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "6", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96849, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3367, + 3525 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "22", + "building_ref": "ID-920400000064", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94535, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3367, + 3860 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "3", + "building_ref": "IMB/92040/C/9778", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98585, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 4146 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "4", + "building_ref": "IMB/92040/C/9616", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97214, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 3625 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400020", + "street_number": "24", + "building_ref": "IMB/92040/X/00QU", + "street": "CHEMIN D ACCES A LA GARE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93282, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 3533 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "5", + "building_ref": "IMB/92040/S/9418", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97415, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3106, + 3642 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "0", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97459, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3106, + 3642 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "1", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97825, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3111, + 3568 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "3", + "building_ref": "IMB/92040/S/00B7", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97831, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 4083 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "2", + "building_ref": "IMB/92040/C/9615", + "street_ext": "B", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97880, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3173, + 3850 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040B011", + "street_number": "21", + "street": "LES ARCHES D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96310, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3179, + 3245 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "37", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96324, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 3367 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "28", + "building_ref": "ID-920400000040", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96291, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3132, + 3330 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "30", + "building_ref": "IMB/92040/C/8567", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93771, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 3300 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "32", + "building_ref": "IMB/92040/C/8571", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97816, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 3452 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "9", + "building_ref": "IMB/92040/S/9435", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95987, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 3493 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "7", + "building_ref": "IMB/92040/C/9420", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95988, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 3279 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "34", + "building_ref": "IMB/92040/C/8573", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95986, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 3361 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "13", + "building_ref": "IMB/92040/S/9409", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93281, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 3407 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "11", + "building_ref": "IMB/92040/C/9422", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97391, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3004, + 3259 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "36", + "building_ref": "IMB/92040/S/8575", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97174, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3004, + 3300 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "15", + "building_ref": "IMB/92040/S/9424", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97274, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2971, + 3301 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "6", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95763, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2973, + 3346 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "4", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97014, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2968, + 3242 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "8", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96902, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2940, + 3393 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920401420", + "street_number": "2", + "building_ref": "IMB/92040/X/014O", + "street": "ALLEE DES CARRIERES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95546, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2918, + 3259 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "38", + "building_ref": "IMB/92040/X/00S5", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92947, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2835, + 3475 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040B011", + "street_number": "24", + "street": "LES ARCHES D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96775, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2833, + 4083 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "6", + "building_ref": "IMB/92040/C/9619", + "street_ext": "B", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95274, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2897, + 4085 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "6", + "building_ref": "IMB/92040/C/9618", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96523, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2925, + 3562 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040B011", + "street_number": "23", + "street": "LES ARCHES D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96928, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 3600 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400020", + "street_number": "22", + "building_ref": "IMB/92040/X/00QT", + "street": "CHEMIN D ACCES A LA GARE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95770, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3001, + 3636 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040B011", + "street_number": "22", + "street": "LES ARCHES D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95786, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 4118 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "4", + "building_ref": "IMB/92040/C/9617", + "street_ext": "B", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95771, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2684, + 4093 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "8", + "building_ref": "IMB/92040/C/9621", + "street_ext": "B", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92277, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2656, + 3871 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "40", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94298, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2691, + 3729 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "118", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92292, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2726, + 3595 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "85", + "building_ref": "IMB/92040/C/0637", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92332, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2766, + 3856 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "42", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95028, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2766, + 3856 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "55", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95029, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2766, + 3856 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "0", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95943, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2766, + 3856 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "61", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95944, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2748, + 4087 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405150", + "street_number": "8", + "building_ref": "IMB/92040/C/9620", + "street": "PLACE LEON BLUM", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94689, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2803, + 3781 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "116", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96648, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "8", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92502, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "38", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "72", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92504, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "82", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92505, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "98", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92506, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "154", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92507, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "220", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92508, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "0", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95261, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "43", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95262, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "9", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96181, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "32", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96182, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "47", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96183, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "48", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96184, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "92", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96185, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "145", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96186, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "218", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96187, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "66", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96670, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "101", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96671, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2813, + 3676 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "104", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96672, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2812, + 3639 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "83", + "building_ref": "IMB/92040/C/0638", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95252, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2598, + 3335 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400020", + "street_number": "22", + "building_ref": "IMB/92040/S/00B6", + "street": "CHEMIN D ACCES A LA GARE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94055, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2512, + 3492 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "89", + "building_ref": "IMB/92040/C/0633", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93434, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2493, + 3638 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "120", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91904, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2491, + 4047 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "73", + "building_ref": "IMB/92040/X/00YL", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93417, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2491, + 4102 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "75", + "building_ref": "IMB/92040/X/010E", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95417, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2534, + 3839 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "36", + "building_ref": "ID-92040000001I", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93854, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2595, + 3685 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "120", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94048, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2619, + 3539 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "87", + "building_ref": "IMB/92040/C/0636", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96042, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2619, + 3830 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "38", + "building_ref": "ID-92040000002G", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95443, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2299, + 3853 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "32", + "building_ref": "IMB/92040/C/9116", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92521, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2363, + 4079 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "71", + "building_ref": "IMB/92040/X/00YM", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92802, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2363, + 3686 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "122", + "building_ref": "IMB/92040/C/0406", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94796, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2376, + 3899 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "34", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94758, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2418, + 3493 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "81", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91638, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2406, + 3348 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "91", + "building_ref": "IMB/92040/C/0632", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93069, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2301, + 3438 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "93", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94028, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 3370 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "97", + "building_ref": "IMB/92040/C/0328", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91100, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2149, + 3314 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "99", + "building_ref": "IMB/92040/C/0394", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93544, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2107, + 3899 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "28", + "building_ref": "IMB/92040/S/9118", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93911, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2128, + 4082 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "65", + "building_ref": "IMB/92040/X/013D", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90465, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2149, + 3574 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "126", + "building_ref": "IMB/92040/C/0416", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90488, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2213, + 4078 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "67", + "building_ref": "IMB/92040/X/013E", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93662, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2213, + 3797 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "124", + "building_ref": "IMB/92040/X/0153", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92068, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2213, + 3797 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "32", + "building_ref": "IMB/92040/X/0154", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93661, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2213, + 3797 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "122", + "building_ref": "IMB/92040/X/0152", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94165, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2213, + 3869 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "30", + "building_ref": "IMB/92040/C/002R", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90687, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 3455 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "7", + "building_ref": "IMB/92040/S/8585", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99486, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 3460 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "5", + "building_ref": "IMB/92040/S/8581", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99559, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3688, + 3509 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "3", + "building_ref": "IMB/92040/S/8597", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101242, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3752, + 3646 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "12", + "building_ref": "IMB/92040/S/8592", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101314, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3757, + 3548 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "3", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98514, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 3656 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "10", + "building_ref": "IMB/92040/C/8590", + "street_ext": "T", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101372, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 3845 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "16", + "building_ref": "IMB/92040/S/9735", + "street_ext": "B", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96095, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 3844 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "16", + "building_ref": "IMB/92040/S/9772", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99709, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3765, + 4092 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "69", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101367, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3821, + 3639 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "10", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99772, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 3865 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "18", + "building_ref": "IMB/92040/C/9736", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96687, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3859, + 4130 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "67", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100138, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3858, + 3677 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "10", + "building_ref": "IMB/92040/S/8588", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98705, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 3682 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "8", + "building_ref": "IMB/92040/C/8586", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100150, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 3885 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "20", + "building_ref": "IMB/92040/X/00M1", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100173, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3911, + 4151 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "65", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101959, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3711, + 4070 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "71", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98382, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3705, + 3915 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "7", + "street_ext": "B", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101256, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 3806 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "14", + "building_ref": "IMB/92040/S/9745", + "street_ext": "T", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99645, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3707, + 3614 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "14", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98233, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3684, + 4151 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "92", + "street_ext": "T", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101239, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3684, + 3607 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "14", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98210, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3679, + 3523 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "3", + "street_ext": "T", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98209, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 3798 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "14", + "building_ref": "IMB/92040/C/9747", + "street_ext": "B", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95625, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 4023 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "73", + "building_ref": "IMB/92040/X/0146", + "street_ext": "B", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100915, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 3626 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "16", + "building_ref": "IMB/92040/S/8595", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99487, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 3742 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "14", + "building_ref": "IMB/92040/S/9785", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95595, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 4033 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "73", + "building_ref": "IMB/92040/S/0717", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95596, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3623, + 3736 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "12", + "building_ref": "IMB/92040/S/9784", + "street_ext": "B", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99469, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3610, + 3873 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "7", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97757, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3602, + 4044 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409652", + "street_number": "73", + "building_ref": "IMB/92040/X/014W", + "street": "AVENUE VICTOR CRESSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100421, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3581, + 3610 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "18", + "building_ref": "IMB/92040/S/8596", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95172, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3559, + 3595 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "18", + "building_ref": "IMB/92040/S/8568", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99312, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 3890 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407178B", + "street_number": "5", + "building_ref": "IMB/92040/C/8322", + "street": "PLACE DU PRESIDENT KENNEDY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100685, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4135, + 3959 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407178B", + "street_number": "7", + "street": "PLACE DU PRESIDENT KENNEDY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100606, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4110, + 4072 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "21", + "street_ext": "B", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100584, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 3682 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "6", + "building_ref": "IMB/92040/C/8584", + "street_ext": "T", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97044, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3965, + 3692 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "6", + "building_ref": "IMB/92040/C/8583", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102142, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3965, + 3875 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "22", + "building_ref": "IMB/92040/S/9739", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98846, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3960, + 4060 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "17", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 102137, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4003, + 4049 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "19", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100454, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 3779 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "4", + "building_ref": "IMB/92040/S/8580", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100461, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 3702 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "6", + "building_ref": "IMB/92040/C/8582", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97538, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 3881 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "22", + "building_ref": "IMB/92040/S/9740", + "street_ext": "B", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97539, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4062, + 4058 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "21", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99406, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 3942 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "24", + "building_ref": "IMB/92040/C/9741", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102451, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 3723 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "4", + "building_ref": "IMB/92040/S/8548", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99348, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 3938 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407115", + "street_number": "26", + "building_ref": "IMB/92040/C/9742", + "street": "AVENUE PASTEUR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97940, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 3728 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "2", + "building_ref": "IMB/92040/C/8536", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102541, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 3503 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "1", + "building_ref": "IMB/92040/X/00PP", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100194, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3645, + 3275 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "41", + "building_ref": "IMB/92040/S/9349", + "street_ext": "T", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100886, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 2998 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "40", + "building_ref": "IMB/92040/C/9346", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99558, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 3106 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "43", + "building_ref": "IMB/92040/C/9350", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98192, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 3203 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "43", + "building_ref": "IMB/92040/X/00KD", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100914, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 3284 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "43", + "building_ref": "IMB/92040/X/00KF", + "street_ext": "A", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95624, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3666, + 2706 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "28", + "building_ref": "IMB/92040/X/00II", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100913, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3694, + 2655 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "23", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101250, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 2827 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "19", + "building_ref": "IMB/92040/S/8956", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101259, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 2937 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "16", + "building_ref": "IMB/92040/X/00IJ", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101260, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3688, + 2924 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "16", + "building_ref": "IMB/92040/S/8953", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99578, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3688, + 2995 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "40", + "building_ref": "IMB/92040/C/9347", + "street_ext": "T", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99579, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 3122 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "45", + "building_ref": "IMB/92040/C/9352", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98237, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3730, + 3006 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "42", + "building_ref": "IMB/92040/X/00KC", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99667, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 2251 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "32", + "building_ref": "IMB/92040/S/8799", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99644, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3700, + 1934 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "52", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99637, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3828, + 2017 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "48", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101464, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 2160 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "41", + "building_ref": "IMB/92040/S/8808", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99783, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 1916 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "35", + "building_ref": "IMB/92040/C/0664", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96686, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3860, + 2032 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "46", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100139, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3892, + 1995 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "31", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98743, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 2254 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "37", + "building_ref": "IMB/92040/X/00OM", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100172, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 2099 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "44", + "building_ref": "IMB/92040/S/0660", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100149, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 1942 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "33", + "building_ref": "IMB/92040/S/0678", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101698, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 2198 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "39", + "building_ref": "IMB/92040/C/8805", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98727, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 2467 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "24", + "building_ref": "ID-92040000002S", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96963, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 2801 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "20", + "building_ref": "IMB/92040/S/8660", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96964, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3876, + 2707 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "15", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101693, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 2537 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "20", + "building_ref": "IMB/92040/S/8791", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101941, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3914, + 2459 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "22", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98770, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 2903 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "15", + "building_ref": "IMB/92040/S/8952", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101942, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 3000 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "8", + "building_ref": "IMB/92040/S/8676", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101699, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3862, + 3055 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "48", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96727, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3858, + 2654 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "17", + "building_ref": "IMB/92040/S/8658", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98704, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3823, + 2888 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "15", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101461, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 2975 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "10", + "building_ref": "IMB/92040/S/8843", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99784, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 3143 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "53", + "building_ref": "IMB/92040/C/9305", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99785, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3815, + 3020 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "46", + "building_ref": "IMB/92040/S/9353", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99751, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3794, + 2964 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "12", + "building_ref": "IMB/92040/S/8627", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99721, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3794, + 3137 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "51", + "building_ref": "IMB/92040/C/9303", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98547, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3812, + 2730 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "24", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99745, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3801, + 1954 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "35", + "street_ext": "B", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101397, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3815, + 2104 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "43", + "building_ref": "IMB/92040/S/8810", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101404, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3782, + 1970 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "50", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 101379, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3794, + 2064 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "45", + "building_ref": "IMB/92040/X/00RG", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98545, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3794, + 2403 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "26", + "building_ref": "ID-92040000004B", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98546, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3781, + 2305 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "28", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96243, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3752, + 2041 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "47", + "building_ref": "IMB/92040/X/00QV", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101311, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3742, + 2259 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "30", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99680, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3740, + 2673 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "21", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96064, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3736, + 2681 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "26", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98405, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3752, + 2959 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "14", + "building_ref": "IMB/92040/S/8951", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101312, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 2603 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "19", + "building_ref": "IMB/92040/S/8659", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96094, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 2811 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "17", + "building_ref": "IMB/92040/S/8954", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99708, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 3005 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "44", + "building_ref": "IMB/92040/S/9351", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98524, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 3132 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "49", + "building_ref": "IMB/92040/C/9313", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98525, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3752, + 3112 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "47", + "building_ref": "IMB/92040/C/9315", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101313, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 3066 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "2", + "building_ref": "IMB/92040/S/8672", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97721, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 2913 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "9", + "building_ref": "IMB/92040/S/8677", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99347, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 2415 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "27", + "building_ref": "IMB/92040/C/8797", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100505, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4078, + 2649 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "12", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100554, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 2944 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "7", + "building_ref": "IMB/92040/S/8675", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102540, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 2451 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "25", + "building_ref": "IMB/92040/C/8795", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100562, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4072, + 2190 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "34", + "building_ref": "IMB/92040/X/00KS", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100537, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 2181 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "36", + "building_ref": "IMB/92040/S/0683", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99346, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4029, + 1977 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "2", + "building_ref": "IMB/92040/C/8778", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99317, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4012, + 2105 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "38", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97550, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 2334 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "31", + "building_ref": "IMB/92040/S/8798", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102364, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 2662 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "14", + "building_ref": "IMB/92040/X/00IH", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102365, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4044, + 2799 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "0", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97714, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4029, + 2827 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "14", + "building_ref": "IMB/92040/S/8657", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102433, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4038, + 3091 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "54", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100494, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4015, + 3021 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "4", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97552, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 3041 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "52", + "building_ref": "IMB/92040/S/9304", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98983, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4004, + 2415 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "29", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100456, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3991, + 2786 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "16", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98971, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3978, + 2947 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "11", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97154, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3965, + 2603 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "16", + "building_ref": "IMB/92040/C/00BT", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100235, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3965, + 3036 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "50", + "building_ref": "IMB/92040/S/9340", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102141, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3956, + 2998 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "6", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100225, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 2680 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "13", + "building_ref": "IMB/92040/S/8656", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100193, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3944, + 2567 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "18", + "building_ref": "IMB/92040/S/8789", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100216, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3944, + 2878 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "13", + "building_ref": "IMB/92040/S/8802", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102120, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3944, + 2776 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "18", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 102119, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3944, + 2288 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "35", + "building_ref": "IMB/92040/C/8788", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100215, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 2104 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "42", + "building_ref": "IMB/92040/S/0661", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97043, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3971, + 2084 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "40", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 102157, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3987, + 2318 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "33", + "building_ref": "IMB/92040/S/8814", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98869, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 2090 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "1", + "building_ref": "IMB/92040/S/8777", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100654, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 2240 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "30", + "building_ref": "IMB/92040/X/00YA", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100655, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4130, + 2167 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "32", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99517, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4100, + 2674 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "10", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99448, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 2950 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "5", + "building_ref": "IMB/92040/S/8674", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100657, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 2481 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "23", + "building_ref": "IMB/92040/S/8793", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100656, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4158, + 2742 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "8", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100741, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 2980 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "3", + "building_ref": "IMB/92040/S/8673", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98103, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 2039 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "3", + "building_ref": "IMB/92040/S/8779", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100684, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 2005 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "5", + "building_ref": "IMB/92040/C/8781", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99587, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3389, + -49 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "7", + "building_ref": "IMB/92040/S/0325", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99232, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3367, + 7 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "5", + "building_ref": "IMB/92040/S/0323", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98583, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3324, + 78 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "3", + "building_ref": "IMB/92040/S/0322", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99080, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3282, + -49 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "6", + "building_ref": "IMB/92040/S/0324", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94308, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 153 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "1", + "building_ref": "IMB/92040/S/0320", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94205, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3246, + 196 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "2", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98338, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3196, + 323 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "29", + "building_ref": "IMB/92040/X/00KX", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98064, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3196, + 409 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "25", + "building_ref": "IMB/92040/S/9595", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94103, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3206, + 373 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "27", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94116, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 427 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "23", + "building_ref": "IMB/92040/S/9593", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97878, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3175, + 295 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "31", + "building_ref": "IMB/92040/X/00KZ", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94082, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3132, + 190 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404725", + "street_number": "2", + "building_ref": "IMB/92040/C/0321", + "street_ext": "B", + "street": "PASSAGE JEAN GEORGET", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97849, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3132, + 266 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "33", + "building_ref": "IMB/92040/S/9572", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93769, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3066, + 299 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "20", + "street_ext": "B", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97695, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3068, + 241 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "35", + "building_ref": "IMB/92040/C/9612", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97433, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3080, + 431 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "16", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97804, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 556 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "19", + "building_ref": "IMB/92040/C/9590", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97446, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 476 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "21", + "building_ref": "IMB/92040/S/9591", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97815, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 363 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "18", + "building_ref": "IMB/92040/S/9589", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93599, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3004, + 308 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "20", + "building_ref": "IMB/92040/X/00KV", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97173, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 389 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "1", + "building_ref": "IMB/92040/S/9658", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97213, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2961, + 694 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "13", + "building_ref": "IMB/92040/S/9584", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96998, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2961, + 617 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "15", + "building_ref": "IMB/92040/S/9586", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95753, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2961, + 287 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "22", + "building_ref": "IMB/92040/S/9592", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95752, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 358 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "3", + "building_ref": "IMB/92040/S/9659", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95768, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2982, + 466 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "2", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92987, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 602 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "17", + "building_ref": "IMB/92040/S/9587", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95769, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2993, + 538 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "17", + "street_ext": "B", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97036, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 190 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "37", + "building_ref": "IMB/92040/S/0065", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92991, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2961, + 170 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "37", + "building_ref": "IMB/92040/S/9653", + "street_ext": "B", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96997, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2940, + 154 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "39", + "building_ref": "IMB/92040/S/9654", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92965, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2936, + 30 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "24", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96871, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2926, + -17 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "22", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92961, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2940, + 500 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "14", + "building_ref": "IMB/92040/S/9571", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95545, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2876, + 493 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "4", + "building_ref": "IMB/92040/S/9578", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95306, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2876, + 573 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "10", + "building_ref": "IMB/92040/X/00KW", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96804, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2897, + 266 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "24", + "building_ref": "IMB/92040/S/9594", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92928, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2898, + 390 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "5", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92935, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2897, + 465 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "4", + "building_ref": "IMB/92040/S/9660", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96521, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2897, + 730 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "9", + "building_ref": "IMB/92040/S/9582", + "street_ext": "B", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96815, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2897, + 689 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "11", + "building_ref": "IMB/92040/S/9597", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96522, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2897, + 526 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "12", + "building_ref": "IMB/92040/X/0150", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92929, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2906, + -57 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "13", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96915, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2900, + -36 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "17", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92937, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2876, + 160 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "39", + "building_ref": "IMB/92040/S/9655", + "street_ext": "B", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96452, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2868, + 191 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "41", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95304, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2848, + 198 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "28", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96436, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2850, + -1 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "19", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96782, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2825, + 557 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "9", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96420, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2833, + 586 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "7", + "building_ref": "IMB/92040/X/014Y", + "street_ext": "B", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92654, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2833, + 311 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "7", + "building_ref": "IMB/92040/X/00KY", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96424, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2854, + 439 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "6", + "building_ref": "IMB/92040/S/9661", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95288, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2854, + 249 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "26", + "building_ref": "IMB/92040/S/9626", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92672, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2854, + 755 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "9", + "building_ref": "IMB/92040/S/9581", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96785, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2833, + 758 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "7", + "building_ref": "IMB/92040/C/9580", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96679, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2790, + 816 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "5", + "building_ref": "IMB/92040/S/9579", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95054, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2790, + 643 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "7", + "building_ref": "IMB/92040/C/0551", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92481, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2779, + 570 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "12", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92476, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2790, + 393 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "10", + "building_ref": "IMB/92040/S/9663", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96150, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2812, + 408 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "8", + "building_ref": "IMB/92040/S/9662", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95251, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2776, + 150 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "1", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95041, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2776, + 150 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "7", + "street_ext": "B", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95042, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2776, + 150 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "26", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96629, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2771, + 108 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "3", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92469, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2737, + 83 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "5", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95911, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2774, + 322 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406116", + "street_number": "12", + "street": "RUE MADEMOISELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95959, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2769, + 500 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "14", + "building_ref": "IMB/92040/S/0786", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92465, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2744, + 1068 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "59", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92446, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2748, + 841 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "3", + "building_ref": "IMB/92040/S/9577", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95918, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2711, + 1028 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "61", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94661, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2705, + 566 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "10", + "building_ref": "IMB/92040/S/0745", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92306, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2701, + 308 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "25", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95734, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2705, + 378 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "32", + "building_ref": "IMB/92023/S/0374", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95737, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2726, + 694 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "5", + "building_ref": "IMB/92040/C/0553", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96561, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2723, + 142 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "2", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95885, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2658, + 95 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "7", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92249, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2659, + 137 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "4", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92251, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2640, + 213 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "11", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96199, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2650, + 436 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "36", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94296, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2641, + 642 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "6", + "building_ref": "IMB/92040/S/0748", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96200, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2661, + 364 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "27", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96218, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2670, + 407 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "34", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95714, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2680, + 240 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "9", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94409, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2684, + 602 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "8", + "building_ref": "IMB/92040/S/0747", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96378, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2674, + 856 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "1", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94403, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2678, + 988 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "63", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92272, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2662, + 953 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "65", + "building_ref": "IMB/92040/S/8768", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92253, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2662, + 770 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "3", + "building_ref": "IMB/92040/S/0555", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94393, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2641, + 928 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "67", + "building_ref": "IMB/92040/C/8770", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96201, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2637, + 871 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406105", + "street_number": "2", + "street": "RUE MADAME", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94281, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2619, + 852 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "69", + "building_ref": "IMB/92040/S/8771", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95442, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2598, + 836 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "71", + "building_ref": "IMB/92040/S/8772", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92136, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2598, + 698 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "4", + "building_ref": "IMB/92040/S/0749", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94054, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2596, + 459 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "31", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94053, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2619, + 425 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "29", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95440, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2619, + 485 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "38", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92205, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2632, + 234 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "6", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96190, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2623, + -12 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "32", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92223, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2623, + -12 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "5", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94273, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2623, + -12 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "14", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96056, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2579, + 193 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "10", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94042, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2558, + 573 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "42", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95861, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2556, + 515 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "35", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93891, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2590, + 226 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236261", + "street_number": "8", + "street": "VILLA DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96016, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2584, + 535 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "40", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92130, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2579, + 483 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "33", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95871, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2593, + 765 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "2", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96017, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2592, + 788 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409140", + "street_number": "1", + "street": "VILLA DU TIR", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95366, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2537, + 977 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "72", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95840, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2534, + 775 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "75", + "building_ref": "IMB/92040/S/8761", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92075, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2533, + 813 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "73", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95511, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2530, + 970 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "74", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91932, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2510, + 643 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "46", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91911, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2514, + 578 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "39", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91921, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2522, + 201 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "34", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95205, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2528, + 615 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "44", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95501, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2532, + 552 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "37", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95218, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2541, + -36 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "16", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95844, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2528, + 12 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "13", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91928, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2501, + 597 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "41", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93430, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2500, + 659 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "48", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91907, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2484, + 683 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "50", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95137, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2484, + 1026 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "70", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91796, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2487, + 919 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "76", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95411, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2440, + 158 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "30", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94923, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2420, + -48 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "6", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93082, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2387, + 141 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "28", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93058, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2385, + 602 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "9", + "building_ref": "IMB/92023/X/027W", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94822, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2385, + 579 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "4", + "building_ref": "IMB/92023/X/027U", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91548, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2385, + 590 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "6", + "building_ref": "IMB/92023/X/027V", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94821, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2385, + 564 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "2", + "building_ref": "IMB/92023/X/027T", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92818, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2385, + 564 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "11", + "building_ref": "IMB/92023/X/027X", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92819, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2385, + 549 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "13", + "building_ref": "IMB/92023/X/027Y", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94763, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2392, + 337 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920231484", + "street_number": "0", + "street": "ALLEE CHARLES LOUIS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94785, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2392, + 337 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920231484", + "street_number": "5", + "street": "ALLEE CHARLES LOUIS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94883, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2408, + 688 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "12", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94893, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2333, + 734 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "78", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94708, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2363, + 560 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "8", + "building_ref": "IMB/92023/X/01Q3", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91436, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2315, + 76 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "26", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94460, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2299, + -53 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237159", + "street_number": "11", + "street": "VILLA PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92530, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2298, + 129 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "36", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92519, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2285, + 10 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237159", + "street_number": "9", + "street": "VILLA PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94386, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2320, + 489 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920231484", + "street_number": "3", + "street": "ALLEE CHARLES LOUIS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91338, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2297, + 1044 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "9", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91314, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2248, + 633 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "9", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93712, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 522 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "1", + "building_ref": "IMB/92023/X/023R", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90981, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 495 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "10", + "building_ref": "IMB/92023/X/026B", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92177, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 503 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "14", + "building_ref": "IMB/92023/X/023X", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90980, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 482 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "6", + "building_ref": "IMB/92023/X/023Y", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90979, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 489 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "4", + "building_ref": "IMB/92023/X/026A", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93693, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 489 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "6", + "building_ref": "IMB/92023/X/01VA", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94230, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2245, + 353 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "15", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93709, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2245, + 353 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "38", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93710, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 472 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "7", + "building_ref": "IMB/92023/X/023U", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92383, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 472 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "5", + "building_ref": "IMB/92023/X/023T", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93714, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 463 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "43", + "building_ref": "IMB/92023/X/023W", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92203, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 482 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230080", + "street_number": "41", + "building_ref": "IMB/92023/X/023V", + "street_ext": "B", + "street": "RUE D ARMENIE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93715, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 513 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "92023T005", + "street_number": "3", + "building_ref": "IMB/92023/X/023S", + "street": "ALLEE DES ABRICOTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93716, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2270, + 75 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237159", + "street_number": "7", + "street": "VILLA PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94359, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2204, + 175 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237159", + "street_number": "5", + "street": "VILLA PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90683, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2200, + 614 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "7", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93653, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2220, + 548 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "4", + "street_ext": "B", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92169, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2221, + 816 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920405175", + "street_number": "66", + "street_ext": "E", + "street": "SENTIER DES LOGES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90970, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2226, + 1020 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "7", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94224, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2162, + 598 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "5", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93567, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2150, + 249 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237159", + "street_number": "3", + "street": "VILLA PERCY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90501, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2156, + 368 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920237209", + "street_number": "2", + "street": "SENTIER DES PLAINS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90505, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2168, + 18 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "128", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91974, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2111, + 4 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "128", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93918, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2105, + 63 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "130", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91671, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2097, + 122 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "132", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92888, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2124, + 514 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "2", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93106, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2122, + 583 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236260", + "street_number": "3", + "street": "RUE DES MONTS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90277, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + -3 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "40", + "building_ref": "IMB/92040/C/8984", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97041, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4072, + 48 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "36", + "building_ref": "IMB/92040/S/8983", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102520, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4071, + 9 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "38", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 102472, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4115, + 74 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "34", + "building_ref": "IMB/92040/S/8982", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97967, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 94 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "32", + "building_ref": "IMB/92040/S/8981", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98080, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 125 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "30", + "building_ref": "IMB/92040/S/8980", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98081, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 145 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403510", + "street_number": "28", + "building_ref": "IMB/92040/S/8979", + "street": "RUE FERDINAND BUISSON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99539, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3538, + 2732 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "25", + "building_ref": "ID-92040000002M", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100270, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3538, + 2873 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "24", + "building_ref": "IMB/92040/S/8960", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95077, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 2526 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "31", + "building_ref": "IMB/92040/S/8662", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97370, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 2989 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "36", + "building_ref": "IMB/92040/C/9339", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100026, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 3101 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "35", + "building_ref": "IMB/92040/S/9337", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99226, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 3178 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "35", + "building_ref": "IMB/92040/S/9338", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99227, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 2994 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "34", + "building_ref": "IMB/92040/C/9336", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97345, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3474, + 3101 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "33", + "building_ref": "IMB/92040/S/9335", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97328, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3474, + 2531 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "33", + "building_ref": "IMB/92040/S/8663", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99837, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 2857 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "26", + "building_ref": "IMB/92040/S/8976", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99996, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 2287 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "40", + "building_ref": "IMB/92040/S/8807", + "street_ext": "B", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97344, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3495, + 2083 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "48", + "building_ref": "IMB/92040/C/00CC", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94951, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3474, + 2067 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "50", + "building_ref": "IMB/92040/X/013T", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94930, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3516, + 2236 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "40", + "building_ref": "IMB/92040/S/8806", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99225, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3537, + 1936 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "53", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99281, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3538, + 2129 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "44", + "building_ref": "IMB/92040/C/8811", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97485, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3538, + 1773 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "4", + "building_ref": "IMB/92040/S/9168", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100269, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3389, + 1955 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "54", + "building_ref": "IMB/92040/S/8813", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94554, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3452, + 1656 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "55", + "building_ref": "IMB/92040/C/8775", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97305, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3452, + 2033 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "52", + "building_ref": "IMB/92040/C/8812", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94860, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3431, + 2501 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "35", + "building_ref": "IMB/92040/S/8664", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99270, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3455, + 2747 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "27", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99829, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3452, + 2842 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "28", + "building_ref": "IMB/92040/S/8963", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99031, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3452, + 3101 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "31", + "building_ref": "IMB/92040/S/9333", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99032, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3452, + 2994 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "32", + "building_ref": "IMB/92040/C/9334", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99821, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3410, + 3101 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "29", + "building_ref": "IMB/92040/S/9331", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94627, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3410, + 2694 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "29", + "building_ref": "IMB/92040/S/8950", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99249, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3410, + 2817 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "30", + "building_ref": "IMB/92040/S/8965", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99250, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3410, + 2485 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "37", + "building_ref": "IMB/92040/S/000Y", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99248, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3386, + 2539 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "38", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97107, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3389, + 2994 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "30", + "building_ref": "IMB/92040/C/9332", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98783, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3346, + 3091 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "27", + "building_ref": "IMB/92040/S/9329", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96852, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3346, + 2989 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "28", + "building_ref": "IMB/92040/S/9330", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98560, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3367, + 3091 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "27", + "building_ref": "IMB/92040/S/00BM", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94534, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3367, + 2470 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "39", + "building_ref": "IMB/92040/C/8679", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98584, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3367, + 2450 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "41", + "building_ref": "IMB/92040/S/8666", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99164, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3329, + 2519 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "40", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3324, + 2653 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "31", + "building_ref": "IMB/92040/S/8966", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98491, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3319, + 3014 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "26", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94490, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3282, + 3212 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "35", + "building_ref": "IMB/92040/X/00RZ", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94309, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3287, + 3015 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "24", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96760, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3298, + 2747 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "34", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96766, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3286, + 2489 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "43", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94321, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3303, + 2821 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "32", + "building_ref": "IMB/92040/C/8967", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94334, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3303, + 2027 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "59", + "building_ref": "IMB/92040/S/8939", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94333, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3282, + 2114 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "55", + "building_ref": "IMB/92040/S/8936", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99053, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3196, + 2257 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "47", + "building_ref": "IMB/92040/S/8929", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96339, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3217, + 2394 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "47", + "building_ref": "IMB/92040/S/8669", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96367, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3217, + 2226 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "49", + "building_ref": "IMB/92040/S/8931", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98303, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3239, + 1569 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "57", + "building_ref": "IMB/92040/S/8764", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97979, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 2088 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "57", + "building_ref": "IMB/92040/S/8938", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96501, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 2378 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "45", + "building_ref": "IMB/92040/S/8926", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94206, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 2165 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "53", + "building_ref": "IMB/92040/S/8934", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98001, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3239, + 2185 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "51", + "building_ref": "IMB/92040/C/8933", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94186, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3239, + 2434 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "45", + "building_ref": "IMB/92040/S/000Z", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96481, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 2638 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "33", + "building_ref": "IMB/92040/S/8968", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96502, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 2933 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "22", + "building_ref": "IMB/92040/C/9302", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94207, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3260, + 3198 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "35", + "building_ref": "IMB/92040/X/00S0", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98002, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3267, + 3077 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "25", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98357, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3217, + 2603 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "42", + "building_ref": "IMB/92040/S/8653", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98304, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3217, + 2469 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "34", + "building_ref": "ID-92040000003O", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96368, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3216, + 2477 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "44", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96362, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3198, + 2650 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "35", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94112, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3165, + 3074 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "21", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93805, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3175, + 3095 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "23", + "building_ref": "IMB/92040/S/9248", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96316, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3175, + 2506 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "46", + "building_ref": "IMB/92040/S/8668", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96315, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 2900 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "20", + "building_ref": "IMB/92040/X/00QK", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97588, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 2828 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "20", + "building_ref": "IMB/92040/X/00QJ", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93793, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 2745 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "36", + "building_ref": "IMB/92040/S/8969", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93792, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3153, + 2618 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "37", + "building_ref": "IMB/92040/C/8970", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97879, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3132, + 2969 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "20", + "building_ref": "IMB/92040/C/9271", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97476, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3131, + 3069 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "19", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97847, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3130, + 3215 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "39", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97475, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3111, + 2878 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "20", + "building_ref": "IMB/92040/X/00QI", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97830, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3111, + 2917 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "20", + "building_ref": "IMB/92040/C/9270", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96118, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3111, + 2480 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403160", + "street_number": "48", + "building_ref": "IMB/92040/S/8670", + "street": "SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97462, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3111, + 2536 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "39", + "building_ref": "IMB/92040/S/8973", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97829, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3132, + 2592 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "37", + "building_ref": "IMB/92040/C/8971", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93770, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3111, + 2399 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "43", + "building_ref": "IMB/92040/C/8935", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97461, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3104, + 1827 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "56", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93616, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3175, + 2287 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "47", + "building_ref": "IMB/92040/S/8928", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96313, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3175, + 2327 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "45", + "building_ref": "IMB/92040/S/8925", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96314, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3004, + 1826 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "56", + "building_ref": "IMB/92040/C/8923", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95790, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 1902 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "54", + "building_ref": "IMB/92040/C/8949", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95821, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 2022 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "50", + "building_ref": "IMB/92040/C/8932", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93600, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3068, + 2096 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "58", + "building_ref": "IMB/92040/C/8765", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96002, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3068, + 2495 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "41", + "building_ref": "IMB/92040/S/8975", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97434, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3084, + 2716 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040Y0002", + "street_number": "2", + "street_ext": "B", + "street": "PETIT SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97444, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 2729 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040Y0002", + "street_number": "2", + "building_ref": "IMB/92040/S/8692", + "street": "PETIT SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97447, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 2959 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "16", + "building_ref": "IMB/92040/S/00CY", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93601, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 3062 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "19", + "building_ref": "IMB/92040/S/9269", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97448, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3089, + 3103 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "17", + "building_ref": "IMB/92040/C/9268", + "street_ext": "B", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93602, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3088, + 3189 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "41", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97812, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3068, + 3157 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "53", + "building_ref": "IMB/92040/S/8461", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97698, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 3040 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "15", + "building_ref": "IMB/92040/S/9265", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97683, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 3078 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "17", + "building_ref": "IMB/92040/S/9267", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93297, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 2928 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "16", + "building_ref": "IMB/92040/C/9266", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97414, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3047, + 2713 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040Y0002", + "street_number": "4", + "building_ref": "IMB/92040/S/8655", + "street": "PETIT SENTIER DES EPINETTES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95985, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3004, + 2898 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "14", + "building_ref": "IMB/92040/C/9264", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93242, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3004, + 3121 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "55", + "building_ref": "IMB/92040/S/8464", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93243, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 3024 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "13", + "building_ref": "IMB/92040/S/9263", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97390, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3025, + 3136 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "53", + "building_ref": "IMB/92040/S/8462", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93280, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 3075 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "55", + "building_ref": "IMB/92040/S/8465", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96906, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 3024 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "11", + "building_ref": "IMB/92040/S/9247", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97018, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2983, + 2867 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "12", + "building_ref": "IMB/92040/C/9262", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92992, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2943, + 3181 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "38", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95740, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2941, + 3092 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "57", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95557, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2940, + 2975 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402525", + "street_number": "7", + "building_ref": "IMB/92040/X/00L0", + "street": "RUE DE LA DEFENSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96935, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2931, + 3174 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "38", + "street_ext": "T", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96930, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2918, + 2136 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "48", + "building_ref": "IMB/92040/C/8930", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96917, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2998, + 1994 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "52", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93236, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2996, + 1606 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "60", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 97038, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2876, + 1584 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "62", + "building_ref": "IMB/92040/C/8766", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96805, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2892, + 2460 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "40", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 96517, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2911, + 3067 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "59", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95521, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2876, + 3004 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "61", + "building_ref": "IMB/92040/C/8477", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96806, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2833, + 2495 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "40", + "building_ref": "IMB/92040/S/0011", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96425, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2833, + 3171 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "40", + "building_ref": "IMB/92040/X/0122", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96426, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2812, + 3133 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "42", + "building_ref": "IMB/92040/X/00YY", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96658, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2812, + 2958 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "63", + "building_ref": "IMB/92040/C/8467", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92496, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2790, + 2933 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "63", + "building_ref": "IMB/92040/S/8458", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96151, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2790, + 2472 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "44", + "building_ref": "IMB/92040/C/8962", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95055, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2790, + 3120 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "44", + "building_ref": "IMB/92040/X/0123", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92482, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2748, + 2902 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "65", + "building_ref": "IMB/92040/S/8469", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92451, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2769, + 2164 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "42", + "building_ref": "IMB/92040/C/8937", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95030, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2812, + 2181 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "50", + "building_ref": "ID-92040000000Y", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92495, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2662, + 1483 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "68", + "building_ref": "IMB/92040/C/000U", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95705, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2662, + 1608 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "64", + "building_ref": "IMB/92040/C/8767", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96220, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2705, + 1533 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "66", + "building_ref": "IMB/92040/C/8769", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92307, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2705, + 2349 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "46", + "building_ref": "IMB/92040/C/8927", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96404, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2722, + 2997 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "46", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92327, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2677, + 2960 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "48", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92271, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2662, + 2818 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "65", + "building_ref": "IMB/92040/S/8470", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95706, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2648, + 2942 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "50", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95696, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2662, + 3045 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "52", + "building_ref": "IMB/92040/C/8460", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94394, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2552, + 2164 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "38", + "street_ext": "T", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93874, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2561, + 1327 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "12", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92104, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2489, + 2072 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "38", + "street_ext": "B", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95413, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2534, + 2051 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403165", + "street_number": "38", + "building_ref": "IMB/92040/X/00QS", + "street": "RUE D EREVAN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95831, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2539, + 2799 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "67", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 95234, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2491, + 2928 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "54", + "building_ref": "IMB/92040/C/8463", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91800, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2402, + 2744 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "69", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94791, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2386, + 1276 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "13", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91563, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2386, + 1276 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "31", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93055, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2386, + 1276 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "12", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94833, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2371, + 1232 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "11", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92808, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2276, + 1287 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "6", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91118, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2342, + 2884 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "56", + "building_ref": "IMB/92040/S/008K", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 94716, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2288, + 2777 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "60", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92418, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 2848 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "58", + "building_ref": "IMB/92040/C/008L", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92384, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2222, + 2772 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "64", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92170, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2226, + 2652 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "71", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94225, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2225, + 1929 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "5", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93682, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2248, + 1505 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "4", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93713, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2253, + 1476 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "6", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91094, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 1685 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "7", + "building_ref": "IMB/92040/S/004C", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93717, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2256, + 1380 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "8", + "building_ref": "IMB/92040/C/0254", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91099, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2235, + 1263 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "4", + "building_ref": "IMB/92040/C/9744", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92178, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2104, + 1604 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "2", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91670, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2182, + 2087 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "1", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 94134, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2159, + 1972 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404450", + "street_number": "3", + "street": "RUE HONORE FRAGONARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93564, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2171, + 2779 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "66", + "building_ref": "IMB/92040/C/8471", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91978, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 1862 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "2", + "building_ref": "IMB/92040/S/0760", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99643, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 1774 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "5", + "building_ref": "IMB/92040/S/9167", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99642, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3688, + 1570 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "18", + "building_ref": "IMB/92040/S/9383", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95638, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3688, + 1351 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403130", + "street_number": "55", + "building_ref": "IMB/92040/C/8800", + "street_ext": "T", + "street": "RUE DE L EGALITE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95637, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3709, + 1549 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "18", + "building_ref": "IMB/92040/S/9384", + "street_ext": "B", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95658, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3730, + 1723 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "7", + "building_ref": "IMB/92040/S/9102", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 95680, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3730, + 1682 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "9", + "building_ref": "IMB/92040/S/9104", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99666, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3730, + 1519 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "20", + "building_ref": "IMB/92040/S/9386", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101277, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 1249 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "32", + "building_ref": "IMB/92040/S/9397", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100171, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3858, + 1295 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "30", + "building_ref": "IMB/92040/C/9395", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96711, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 1356 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "28", + "building_ref": "IMB/92040/S/9393", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96279, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 1565 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "17", + "building_ref": "IMB/92040/S/9234", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96685, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3837, + 1647 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "6", + "building_ref": "IMB/92040/S/0755", + "street_ext": "B", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101470, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3858, + 1614 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "8", + "building_ref": "IMB/92040/S/0753", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98703, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3858, + 1785 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "3", + "building_ref": "IMB/92040/S/0769", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100121, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3880, + 1534 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "19", + "building_ref": "IMB/92040/S/9385", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96962, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 1489 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "21", + "building_ref": "IMB/92040/S/9387", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98753, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 1736 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "5", + "building_ref": "IMB/92040/S/0758", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98754, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3901, + 1585 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "10", + "building_ref": "IMB/92040/S/0752", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96978, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3815, + 1855 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "37", + "building_ref": "IMB/92040/S/0663", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98615, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3815, + 1691 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "6", + "building_ref": "IMB/92040/X/013V", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98614, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3815, + 1600 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "15", + "building_ref": "IMB/92040/S/9275", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96267, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3815, + 1392 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "26", + "building_ref": "IMB/92040/S/9391", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101403, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3801, + 1475 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "22", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98606, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3794, + 1428 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "24", + "building_ref": "IMB/92040/S/9389", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96248, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 1895 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "37", + "building_ref": "IMB/92040/S/0667", + "street_ext": "B", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98523, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 1795 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "4", + "building_ref": "IMB/92040/S/0759", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101371, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3773, + 1616 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "13", + "building_ref": "IMB/92040/S/9108", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99707, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3764, + 1843 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "1", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99702, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3752, + 1646 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "11", + "building_ref": "IMB/92040/C/9106", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99685, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3752, + 1889 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409150", + "street_number": "39", + "building_ref": "IMB/92040/S/0662", + "street": "RUE TOLSTOI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 96076, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 1845 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "4", + "building_ref": "IMB/92040/C/8780", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102539, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 1631 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "22", + "building_ref": "IMB/92040/S/0647", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99434, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 1468 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "27", + "building_ref": "IMB/92040/C/0654", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102538, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 1433 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "9", + "building_ref": "IMB/92040/S/8478", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99433, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4087, + 1350 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "14", + "street_ext": "T", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100558, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 1453 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "29", + "building_ref": "IMB/92040/S/0640", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 1596 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "22", + "building_ref": "IMB/92040/S/0646", + "street_ext": "B", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100504, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4029, + 1372 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "14", + "building_ref": "IMB/92040/S/8492", + "street_ext": "B", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102432, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4029, + 1580 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "24", + "building_ref": "IMB/92040/S/0644", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100481, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 1397 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "14", + "building_ref": "IMB/92040/C/8491", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 98982, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 1761 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "7", + "building_ref": "IMB/92040/S/0754", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100192, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 1698 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "5", + "building_ref": "IMB/92040/S/0757", + "street_ext": "B", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97042, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 1544 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "10", + "building_ref": "IMB/92040/X/00KQ", + "street_ext": "B", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 101968, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3922, + 1453 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "23", + "building_ref": "IMB/92040/S/9388", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98772, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3944, + 1494 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "26", + "building_ref": "IMB/92040/S/0642", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100214, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3964, + 1515 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408530", + "street_number": "8", + "street_ext": "B", + "street": "VILLA SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100230, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3965, + 1387 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "31", + "building_ref": "IMB/92040/S/0639", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97131, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3965, + 1372 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "25", + "building_ref": "IMB/92040/S/9390", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97130, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3987, + 1555 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "24", + "building_ref": "IMB/92040/S/0631", + "street_ext": "B", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102341, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3987, + 1316 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "27", + "building_ref": "IMB/92040/S/9392", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102340, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3987, + 1143 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "36", + "building_ref": "IMB/92040/S/9400", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102339, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3944, + 1198 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "34", + "building_ref": "IMB/92040/S/00AG", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97066, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4008, + 1107 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "38", + "building_ref": "IMB/92040/S/9402", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97537, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4029, + 1078 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "40", + "building_ref": "IMB/92040/S/9404", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102431, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 1015 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "42", + "building_ref": "IMB/92040/C/9406", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97720, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 1054 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "40", + "building_ref": "IMB/92040/S/9405", + "street_ext": "B", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102450, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4051, + 1254 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "29", + "building_ref": "IMB/92040/S/9408", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100502, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 1184 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "31", + "building_ref": "IMB/92040/S/9382", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100561, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4093, + 980 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "44", + "building_ref": "IMB/92040/S/9407", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102537, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 1189 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "20", + "building_ref": "IMB/92040/S/0766", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100683, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 1122 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "33", + "building_ref": "IMB/92040/S/9398", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 100682, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 894 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "48", + "building_ref": "IMB/92040/S/9367", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98101, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 1224 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "18", + "building_ref": "IMB/92040/C/0444", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99521, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4115, + 939 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400640", + "street_number": "46", + "building_ref": "IMB/92040/S/9369", + "street": "RUE BENOIT MALON", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4115, + 1259 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "16", + "building_ref": "IMB/92040/S/8495", + "street_ext": "B", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97968, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4115, + 1270 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "16", + "building_ref": "IMB/92040/S/8494", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 97969, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4115, + 1397 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "11", + "building_ref": "IMB/92040/S/8489", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102558, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4115, + 1382 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "13", + "building_ref": "IMB/92040/S/8490", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102557, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4124, + 1527 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "25", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 99514, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4136, + 1509 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "18", + "building_ref": "IMB/92040/S/8624", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 102663, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4122, + 1583 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409635", + "street_number": "20", + "street": "RUE VERDI", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 100603, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 1703 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "6", + "building_ref": "IMB/92040/C/8782", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 98102, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 1356 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408525", + "street_number": "15", + "building_ref": "IMB/92040/S/8493", + "street": "RUE SERGENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99585, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 4157, + 1479 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403145", + "street_number": "20", + "building_ref": "IMB/92040/C/8628", + "street": "RUE EMILE DUPLOYE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 99586, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 932, + 2600 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "3", + "building_ref": "IMB/92040/S/0731", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86833, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 953, + 2747 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "115", + "building_ref": "IMB/92040/C/0380", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85583, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 889, + 2565 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "2", + "building_ref": "IMB/92040/S/0732", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89103, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 868, + 2747 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "117", + "building_ref": "IMB/92040/C/0378", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85152, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 825, + 1587 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "125", + "building_ref": "IMB/92040/S/8502", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86509, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 864, + 1443 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185A", + "street_number": "10", + "street": "SENTIER DES ETOITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85531, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 889, + 1603 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "123", + "building_ref": "IMB/92040/S/8500", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86752, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 889, + 1007 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "178", + "street_ext": "T", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85831, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 860, + 853 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "3", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86632, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 840, + 1018 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "180", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 925, + 1024 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "28", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85426, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 939, + 881 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920235140", + "street_number": "1", + "street": "RUE DU LIEUTENANT RAOUL BATANY", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89206, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 949, + 995 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "178", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89214, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 976, + 983 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "180", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87027, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 997, + 1289 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "11", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89264, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1083, + 981 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "176", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88485, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1082, + 1070 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "3", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86171, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1077, + 1175 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "6", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89465, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1061, + 1216 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "8", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89462, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1064, + 1117 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "5", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87754, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1048, + 1158 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "7", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85853, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1036, + 1195 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "9", + "street_ext": "B", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89341, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1034, + 1267 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "10", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86107, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1028, + 1209 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "9", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86105, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1021, + 980 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "178", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87566, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1011, + 1414 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "14", + "street_ext": "B", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87541, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1017, + 1664 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "117", + "building_ref": "IMB/92040/S/8439", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89321, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1013, + 1342 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "12", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87542, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1081, + 1681 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "115", + "building_ref": "IMB/92040/S/8479", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89469, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1091, + 1515 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185A", + "street_number": "6", + "street": "SENTIER DES ETOITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89485, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1081, + 1537 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185B", + "street_number": "6", + "building_ref": "IMB/92040/X/00JO", + "street": "SENTIER DES ETROITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86161, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1103, + 1591 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "4", + "building_ref": "IMB/92040/S/9088", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86188, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1108, + 1511 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920236250", + "street_number": "1", + "street": "SENTIER DES MONTQUARTIERS", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86289, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1124, + 1524 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185A", + "street_number": "4", + "street": "SENTIER DES ETOITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86523, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1124, + 1542 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185B", + "street_number": "4", + "building_ref": "IMB/92040/C/9010", + "street": "SENTIER DES ETROITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86512, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1124, + 1690 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "115", + "building_ref": "IMB/92040/C/8455", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86294, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1124, + 2249 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "5", + "building_ref": "IMB/92040/S/0730", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89561, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1124, + 2748 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "113", + "building_ref": "IMB/92040/X/0151", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86295, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1167, + 2132 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "9", + "building_ref": "IMB/92040/S/0728", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89688, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1167, + 2066 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "11", + "building_ref": "IMB/92040/C/0505", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86650, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1145, + 2157 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "7", + "building_ref": "IMB/92040/S/0729", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89671, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1167, + 1708 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "113", + "building_ref": "IMB/92040/C/8454", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89687, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1167, + 1663 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "2", + "building_ref": "IMB/92040/S/001Q", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86649, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1150, + 1059 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "2", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86551, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1150, + 1059 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "17", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89681, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1099, + 1120 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234635", + "street_number": "4", + "street": "ALLEE DE L ILE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88505, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1199, + 941 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "174", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86682, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1241, + 934 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "174", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90036, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1273, + 1286 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "17", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86943, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1355, + 1080 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "7", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90601, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1365, + 1057 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "5", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87075, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1339, + 1117 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "9", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89787, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1323, + 1158 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "11", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87385, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1307, + 1193 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "13", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89753, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1317, + 917 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "170", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87381, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1289, + 936 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "172", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89736, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1288, + 1239 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "15", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89735, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1288, + 2160 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "9", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90127, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1295, + 2107 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "7", + "building_ref": "IMB/92040/S/9767", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86963, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1316, + 2041 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "5", + "building_ref": "IMB/92040/S/9765", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87371, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1316, + 1792 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "109", + "building_ref": "IMB/92040/X/00JL", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86977, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1359, + 2214 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "12", + "building_ref": "IMB/92040/S/9770", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90605, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1338, + 2295 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "16", + "building_ref": "IMB/92040/S/9786", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87000, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1338, + 2249 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "14", + "building_ref": "IMB/92040/S/0073", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90357, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1338, + 1995 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "3", + "building_ref": "IMB/92040/S/9764", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90356, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1338, + 1969 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "88", + "building_ref": "IMB/92040/S/8444", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90355, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1331, + 1899 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "90", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90348, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1316, + 2911 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "111", + "building_ref": "IMB/92040/C/0373", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86978, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1295, + 2861 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "111", + "building_ref": "IMB/92040/C/0384", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87309, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1273, + 2310 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "18", + "building_ref": "IMB/92040/S/9760", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90110, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1270, + 2200 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "11", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87282, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1252, + 2091 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409550", + "street_number": "3", + "building_ref": "IMB/92040/S/0687", + "street": "ALLEE DE L UNION", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90043, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1266, + 2112 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409550", + "street_number": "0", + "street": "ALLEE DE L UNION", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87279, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1273, + 1934 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "92", + "building_ref": "IMB/92040/S/8447", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90109, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1273, + 1781 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "111", + "building_ref": "IMB/92040/S/8452", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87287, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1263, + 1334 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "19", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89440, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1268, + 1531 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "7", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90061, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1253, + 1383 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "21", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86938, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1252, + 1689 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "3", + "building_ref": "IMB/92040/C/9089", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89424, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1252, + 1720 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "113", + "building_ref": "IMB/92040/S/8453", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89425, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1250, + 1616 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "5", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89420, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1245, + 1423 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "23", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86924, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1238, + 1451 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "25", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86919, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1234, + 1473 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "27", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87209, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1231, + 1919 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "94", + "building_ref": "IMB/92040/C/8449", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86813, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1231, + 2091 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409550", + "street_number": "5", + "building_ref": "IMB/92040/S/0686", + "street": "ALLEE DE L UNION", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86814, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1251, + 2241 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "13", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90040, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1209, + 2285 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "15", + "building_ref": "IMB/92040/S/9771", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89916, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1209, + 2295 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "17", + "building_ref": "IMB/92040/S/9773", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89917, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1209, + 2258 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "13", + "building_ref": "IMB/92040/X/00JM", + "street_ext": "B", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86688, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1209, + 2147 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409550", + "street_number": "2", + "building_ref": "IMB/92040/S/0689", + "street": "ALLEE DE L UNION", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89915, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1225, + 1734 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "1", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86810, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1219, + 1848 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "96", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89076, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1224, + 1518 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "29", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86807, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1213, + 1573 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "8", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89928, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1193, + 1539 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185A", + "street_number": "2", + "street": "SENTIER DES ETOITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89051, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1188, + 1557 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403185B", + "street_number": "2", + "building_ref": "IMB/92040/S/9009", + "street": "SENTIER DES ETROITES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86660, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1188, + 1581 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "6", + "building_ref": "IMB/92040/S/9124", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89889, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1188, + 1615 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "4", + "building_ref": "IMB/92040/S/9087", + "street_ext": "B", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86456, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1188, + 2005 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "13", + "building_ref": "IMB/92040/C/00AC", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86661, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1209, + 2715 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "113", + "building_ref": "IMB/92040/C/0381", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89918, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1209, + 2830 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "111", + "building_ref": "IMB/92040/C/0395", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89919, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1526, + 1779 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "99", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88687, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1487, + 2036 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "84", + "building_ref": "IMB/92040/S/8441", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88389, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1466, + 2138 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "82", + "building_ref": "IMB/92040/C/8466", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90953, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1402, + 2173 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "10", + "building_ref": "IMB/92040/S/9769", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87250, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1399, + 1981 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "2", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90290, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1375, + 2035 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "4", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87079, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1382, + 1960 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "1", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87843, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1397, + 1827 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "107", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90288, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1423, + 1470 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400060", + "street_number": "9", + "building_ref": "IMB/92040/X/00WY", + "street": "RUE ANTOINE COURBARIEN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90317, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1423, + 2143 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "8", + "building_ref": "IMB/92040/S/9768", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90769, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1423, + 1995 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "86", + "building_ref": "IMB/92040/C/8443", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90318, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1445, + 2026 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "84", + "building_ref": "IMB/92040/S/8442", + "street_ext": "B", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90927, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1445, + 2107 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407107", + "street_number": "6", + "building_ref": "IMB/92040/S/9766", + "street": "ALLEE DU PANORAMA", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90385, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1444, + 993 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "4", + "street_ext": "B", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87993, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1454, + 957 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "2", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90945, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1431, + 1010 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "4", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90918, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1428, + 1255 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234154", + "street_number": "2", + "street": "RUE DU GENERAL DE NEGRIER", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87984, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1428, + 1255 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234154", + "street_number": "13", + "street": "RUE DU GENERAL DE NEGRIER", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90916, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1402, + 1241 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234154", + "street_number": "15", + "street": "RUE DU GENERAL DE NEGRIER", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87263, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1403, + 1078 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "6", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90759, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1410, + 899 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "166", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90305, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1381, + 1135 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "8", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87230, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1380, + 1228 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234154", + "street_number": "15", + "street_ext": "B", + "street": "RUE DU GENERAL DE NEGRIER", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87660, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1369, + 1048 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "3", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90619, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1371, + 1158 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "10", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87653, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1370, + 907 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "168", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87078, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1383, + 1014 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920230065", + "street_number": "1", + "street": "RUE ANTOINE COURBARIEN", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90635, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1461, + 1097 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "11", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87456, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1515, + 251 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "195", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88416, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1512, + 1154 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "9", + "street_ext": "B", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91280, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1521, + 876 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "164", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88686, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1543, + 1087 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "7", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88704, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1541, + 1023 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "5", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88703, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1623, + 874 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "1", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89160, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1596, + 948 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "3", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89139, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1584, + 860 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "160", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88066, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1553, + 867 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "162", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90827, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1558, + 1113 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920239615", + "street_number": "9", + "street": "ALLEE DE LA VALLEE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88044, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1552, + 1773 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "97", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88042, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1637, + 2199 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "78", + "building_ref": "IMB/92040/C/8448", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89167, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1594, + 2191 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "80", + "building_ref": "IMB/92040/C/8446", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88078, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1649, + 1674 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "2", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89360, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1658, + 2296 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "76", + "building_ref": "IMB/92040/C/8476", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92355, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1652, + 1868 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "95", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89362, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1650, + 1917 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "93", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91000, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1710, + 2027 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "91", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91247, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1697, + 1855 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "1", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91042, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1651, + 863 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "158", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89361, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1763, + 822 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "156", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91400, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1905, + 767 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "154", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93375, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1829, + 1838 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "3", + "building_ref": "IMB/92040/C/0420", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93164, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1829, + 1644 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "4", + "building_ref": "IMB/92040/C/0431", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89293, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1850, + 1449 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "3", + "building_ref": "IMB/92040/C/9743", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89630, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1872, + 1629 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "6", + "building_ref": "IMB/92040/C/0429", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90448, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1872, + 2459 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "72", + "building_ref": "IMB/92040/C/8474", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90449, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1808, + 2372 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "74", + "building_ref": "IMB/92040/C/8475", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89843, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2085, + 2701 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "68", + "building_ref": "IMB/92040/C/8472", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90242, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2021, + 2632 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408130", + "street_number": "70", + "building_ref": "IMB/92040/C/8473", + "street": "BOULEVARD RODIN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92722, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1936, + 1825 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "5", + "building_ref": "IMB/92040/C/0442", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90596, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1978, + 1920 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040999W", + "street_number": "7", + "building_ref": "IMB/92040/S/0701", + "street": "ALLEE HENRI MATISSE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92643, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1966, + 739 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "150", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90810, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2013, + 160 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "195", + "street_ext": "B", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93528, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2009, + 240 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "101", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91167, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2022, + 625 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "146", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93732, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2062, + 420 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "144", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91221, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2067, + 1151 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407118", + "street_number": "5", + "street": "RUE DE LA PASTORALE D ISSY", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90181, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2071, + 342 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "142", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90185, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2080, + 240 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "138", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92873, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2088, + 308 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "140", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91485, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2092, + 168 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "134", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93899, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2080, + 178 + ] + }, + "properties": { + "insee_code": "92023", + "kosc_street_code": "920234437", + "street_number": "136", + "street": "AVENUE HENRI BARBUSSE", + "city": "CLAMART", + "zip_code": "92140", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91465, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 886, + 3412 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "8", + "street_ext": "B", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86748, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 868, + 3369 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "8", + "building_ref": "IMB/92040/C/ZIA5", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85153, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1050, + 3349 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "10", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89448, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1060, + 3471 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "17", + "building_ref": "IMB/92040/C/9954", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87741, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1081, + 3018 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "144", + "building_ref": "IMB/92040/C/0418", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86335, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1124, + 3028 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "144", + "building_ref": "IMB/92040/C/0362", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88574, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1167, + 3053 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "144", + "building_ref": "IMB/92040/C/0398", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86432, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1281, + 3137 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "142", + "street_ext": "A", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87300, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1283, + 3095 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "142", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89732, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1243, + 3253 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "142", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89417, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1252, + 3873 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "2", + "building_ref": "IMB/92040/C/9754", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89426, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1295, + 3801 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "4", + "building_ref": "IMB/92040/C/9755", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87310, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1338, + 3766 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "6", + "building_ref": "IMB/92040/C/9756", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87001, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1359, + 3746 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "8", + "building_ref": "IMB/92040/C/9757", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90606, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1338, + 4114 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "27", + "building_ref": "IMB/92040/C/9119", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87396, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1167, + 4112 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "25", + "building_ref": "IMB/92040/X/00SQ", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86651, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1178, + 4015 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "20", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86449, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1103, + 4121 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "23", + "building_ref": "IMB/92040/X/00W0", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88508, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1073, + 4102 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "21", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88468, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1017, + 3532 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "15", + "building_ref": "IMB/92040/C/9953", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85727, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1017, + 4132 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "19", + "building_ref": "IMB/92040/C/9125", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85728, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1701, + 3607 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "7", + "building_ref": "IMB/92040/C/007E", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91230, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1675, + 4043 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "31", + "street_ext": "B", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91016, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1674, + 3562 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "9", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89387, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1667, + 3967 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "22", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91014, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1594, + 4127 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "31", + "building_ref": "IMB/92040/C/9117", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88851, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1402, + 3700 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "10", + "building_ref": "IMB/92040/C/9758", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87866, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1402, + 3552 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "16", + "building_ref": "IMB/92040/C/8383", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90292, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1423, + 3644 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "12", + "building_ref": "IMB/92040/C/8496", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90319, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1445, + 3613 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "14", + "building_ref": "IMB/92040/C/8381", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87994, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1472, + 3830 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "1", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91056, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1527, + 3758 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "3", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90705, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1527, + 3758 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "5", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91291, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1530, + 3492 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "18", + "building_ref": "IMB/92040/X/00Y4", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87793, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1508, + 3252 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "138", + "building_ref": "IMB/92040/C/0419", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90546, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1505, + 3071 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "107", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91265, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1445, + 3018 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "109", + "building_ref": "IMB/92040/C/0386", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87430, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1416, + 3138 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "140", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90765, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1555, + 3093 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "107", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90828, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1572, + 3298 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "136", + "building_ref": "IMB/92040/C/236I", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88051, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1587, + 3109 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "107", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88070, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1594, + 3499 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "18", + "building_ref": "IMB/92040/X/00Z0", + "street_ext": "B", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88850, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1637, + 3485 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "18", + "building_ref": "IMB/92040/X/00Z1", + "street_ext": "T", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91881, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1637, + 3359 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "134", + "building_ref": "IMB/92040/C/0396", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88167, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1713, + 3409 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "20", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89528, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1872, + 3374 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "132", + "building_ref": "IMB/92040/C/0410", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90450, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1850, + 3021 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040001P", + "street_number": "8", + "building_ref": "IMB/92040/X/00YV", + "street": "VOIE NOUVELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91803, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1850, + 3083 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040001P", + "street_number": "4", + "building_ref": "IMB/92040/X/00YU", + "street": "VOIE NOUVELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89631, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1850, + 3083 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040001P", + "street_number": "6", + "street": "VOIE NOUVELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90425, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1850, + 3052 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "92040001P", + "street_number": "2", + "building_ref": "IMB/92040/X/00YT", + "street": "VOIE NOUVELLE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91804, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1832, + 3182 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406192", + "street_number": "2", + "street": "ALLEE OLYMPE DE GOUGES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90008, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1829, + 3130 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406192", + "street_number": "6", + "street": "ALLEE OLYMPE DE GOUGES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 90007, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1829, + 3130 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406192", + "street_number": "4", + "street": "ALLEE OLYMPE DE GOUGES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91609, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1830, + 3082 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920406192", + "street_number": "8", + "street": "ALLEE OLYMPE DE GOUGES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89306, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1829, + 3023 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "105", + "building_ref": "IMB/92040/X/00UJ", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89993, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1829, + 3451 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "15", + "building_ref": "IMB/92040/C/8382", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89994, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1819, + 3370 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "41", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89989, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1819, + 3370 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "0", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91598, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1819, + 3370 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "17", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91599, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1808, + 3067 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "105", + "building_ref": "IMB/92040/X/00YO", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89976, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1808, + 3492 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "13", + "building_ref": "IMB/92040/S/8420", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91533, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1744, + 3502 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920407125", + "street_number": "11", + "building_ref": "IMB/92040/S/0190", + "street": "RUE PAUL BERT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 91376, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1786, + 3972 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "28", + "building_ref": "IMB/92040/X/0155", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88809, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1872, + 3873 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "24", + "building_ref": "IMB/92040/C/9122", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89652, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2043, + 4076 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "51", + "building_ref": "IMB/92040/C/9050", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 92828, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2021, + 3874 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "26", + "building_ref": "IMB/92040/C/9120", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92723, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2046, + 3930 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "26", + "street_ext": "B", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92845, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2064, + 3477 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "126", + "building_ref": "IMB/92040/C/0415", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 93814, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2053, + 3325 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "99", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93761, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2000, + 3446 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "128", + "building_ref": "IMB/92040/C/0413", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 90075, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 2000, + 3301 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "101", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 91152, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1980, + 3400 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "130", + "street_ext": "A", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 93497, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1957, + 3426 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "130", + "building_ref": "IMB/92040/C/0411", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89949, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1947, + 3385 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "130", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92616, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 1935, + 3271 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "103", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 92017, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 227, + 3582 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "10", + "building_ref": "IMB/92040/S/009I", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87617, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163, + 3547 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "12", + "building_ref": "IMB/92040/C/009J", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 82689, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164, + 3971 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "14", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82696, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164, + 3971 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "25", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82891, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164, + 3971 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "96", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82892, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164, + 3971 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "76", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83366, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 164, + 3971 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "193", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87514, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 147, + 3913 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "27", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87498, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -19, + 3953 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "21", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86888, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 35, + 3800 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "8", + "building_ref": "IMB/92040/C/8827", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 82373, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 68, + 3975 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "23", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82246, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 47, + 3768 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "10", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87126, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 68, + 3519 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "29", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82247, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 86, + 3193 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "33", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82631, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 55, + 3339 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "31", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82299, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 56, + 2723 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "33", + "building_ref": "IMB/92040/C/00BP", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 82230, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3, + 2951 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "0", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 81916, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3, + 2951 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "3", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 81917, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3, + 2951 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "1", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82167, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3, + 2951 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "62", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82168, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3, + 2951 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "23", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82208, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 3, + 2951 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "15", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86910, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 15, + 2488 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "162", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82275, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 41, + 2500 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "160", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82219, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 35, + 2809 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "31", + "building_ref": "IMB/92040/S/9324", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 82372, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -8, + 2878 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "80", + "building_ref": "IMB/92040/S/009G", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 81590, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -27, + 2745 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920402550", + "street_number": "33", + "street_ext": "B", + "street": "RUE DU DOCTEUR LOMBARD", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 81574, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -28, + 3350 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "27", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82179, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + -43, + 3425 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920403531", + "street_number": "1", + "street": "ESPLANADE RAOUL FOLLEREAU", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82031, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 110, + 3113 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "35", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82588, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 115, + 3083 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "37", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82590, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 131, + 2974 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "39", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87347, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 134, + 2853 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "18", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82612, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 159, + 2744 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "42", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82684, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 177, + 2831 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "41", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 82906, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 163, + 2589 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "158", + "building_ref": "IMB/92040/C/009V", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 205, + 3304 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "16", + "building_ref": "IMB/92040/C/009L", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83104, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 205, + 3336 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "14", + "building_ref": "IMB/92040/S/009K", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83105, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 219, + 2703 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "0", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83503, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 219, + 2703 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "10", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83504, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 219, + 2703 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "29", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83505, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 248, + 2452 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "139", + "building_ref": "IMB/92040/X/00OU", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83200, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 248, + 2706 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "43", + "building_ref": "IMB/92040/C/0521", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87679, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 248, + 2744 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408840", + "street_number": "43", + "building_ref": "ID-92040000005Z", + "street": "ALLEE SAINTE LUCIE", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 87680, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 269, + 2630 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "156", + "building_ref": "IMB/92040/X/00PQ", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83733, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 419, + 2501 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "135", + "building_ref": "IMB/92040/C/0407", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87974, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 416, + 2673 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "154", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83354, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 434, + 3450 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "18", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84250, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 419, + 3324 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "22", + "building_ref": "IMB/92040/X/00I8", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83358, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 376, + 3391 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "20", + "building_ref": "IMB/92040/S/009M", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83682, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 343, + 2530 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "137", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83479, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 348, + 2642 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "154", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83933, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 283, + 3933 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "2", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83157, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 344, + 3736 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "4", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83480, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 358, + 3692 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "6", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83676, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 384, + 3610 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "8", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 87938, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 398, + 3955 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "3", + "building_ref": "ID-92040000004U", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83329, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 398, + 3899 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "5", + "building_ref": "ID-92040000002Y", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83328, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 419, + 3858 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "9", + "building_ref": "ID-920400000055", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83866, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 450, + 4163 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "3", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83440, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 441, + 4009 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "1", + "building_ref": "IMB/92040/C/0520", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84254, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 446, + 3631 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "7", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83437, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 568, + 4003 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "10", + "building_ref": "IMB/92040/C/9133", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84817, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 611, + 3577 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "1", + "building_ref": "IMB/92040/C/9997", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88461, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 620, + 3124 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "15", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88529, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 611, + 3383 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "2", + "building_ref": "IMB/92040/C/9998", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84404, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 611, + 2626 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "131", + "building_ref": "IMB/92040/X/00XT", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84403, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 633, + 2634 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "129", + "building_ref": "IMB/92040/X/0116", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88539, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 568, + 2590 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "131", + "building_ref": "IMB/92040/X/00YK", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88428, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 588, + 3212 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "13", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84066, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 565, + 3271 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "11", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85184, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 526, + 2995 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "152", + "building_ref": "IMB/92040/C/009U", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84572, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 538, + 3129 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "26", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83976, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 526, + 2559 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "131", + "building_ref": "IMB/92040/X/00ZO", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88323, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 505, + 2541 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "131", + "building_ref": "IMB/92040/X/00ZP", + "street_ext": "Q", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84456, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 505, + 2583 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "133", + "building_ref": "IMB/92040/X/00ZQ", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84457, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 505, + 2753 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "152", + "building_ref": "IMB/92040/C/0344", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84297, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 498, + 3255 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "24", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 83841, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 472, + 2699 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "152", + "street_ext": "T", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84380, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 462, + 2541 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "133", + "building_ref": "IMB/92040/X/00ZR", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 83445, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 483, + 2564 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "131", + "building_ref": "IMB/92040/X/00ZN", + "street_ext": "B", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88224, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 804, + 2722 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "119", + "building_ref": "IMB/92040/C/0376", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 86485, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 782, + 3379 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "6", + "building_ref": "IMB/92040/C/0001", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84841, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 768, + 2727 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "121", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85131, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 740, + 2875 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "150", + "building_ref": "IMB/92040/C/0345", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88870, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 740, + 2691 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "123", + "building_ref": "IMB/92040/C/0408", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84719, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 718, + 3049 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "21", + "building_ref": "ID-920400000056", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88762, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 697, + 3382 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "4", + "building_ref": "IMB/92040/C/RPSK", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85708, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 709, + 2836 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "0", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 88756, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 718, + 2920 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "23", + "building_ref": "IMB/92040/C/0556", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84647, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 718, + 2610 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "125", + "building_ref": "IMB/92040/C/0417", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84646, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 675, + 2639 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "127", + "building_ref": "IMB/92040/X/00ZX", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85009, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 654, + 3100 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "19", + "building_ref": "ID-920400000026", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85579, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 638, + 3077 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920408900", + "street_number": "17", + "street": "COURS SAINT VINCENT", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84935, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 654, + 3994 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "12", + "building_ref": "IMB/92040/C/9132", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85580, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 640, + 4043 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "12", + "street_ext": "B", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 84937, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 675, + 3558 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "3", + "building_ref": "IMB/92040/C/9999", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88678, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 697, + 3994 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "14", + "building_ref": "IMB/92040/C/9131", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84617, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 740, + 3990 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "14", + "building_ref": "IMB/92040/C/9130", + "street_ext": "B", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 84720, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 740, + 3553 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "5", + "building_ref": "IMB/92040/C/0000", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 88871, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 782, + 4131 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "9", + "street_ext": "B", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85227, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 846, + 3968 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "16", + "building_ref": "IMB/92040/C/9128", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85515, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 868, + 3546 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "7", + "building_ref": "IMB/92040/C/9963", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85536, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 889, + 3899 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "16", + "building_ref": "IMB/92040/C/9127", + "street_ext": "B", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89104, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 953, + 4127 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "15", + "building_ref": "IMB/92040/C/9129", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85584, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 924, + 4117 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "13", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 86829, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 910, + 3968 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "18", + "building_ref": "IMB/92040/X/013M", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 89130, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 910, + 3750 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "13", + "building_ref": "IMB/92040/C/9952", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85841, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 932, + 3653 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "11", + "building_ref": "IMB/92040/C/9951", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85917, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 932, + 3536 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920404400", + "street_number": "9", + "building_ref": "IMB/92040/C/9961", + "street": "VILLA HAUSSMANN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89195, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 996, + 4132 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920400070", + "street_number": "17", + "building_ref": "IMB/92040/C/9112", + "street": "RUE ARISTIDE BRIAND", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 85621, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 957, + 2925 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "146", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85593, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 910, + 2636 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409660", + "street_number": "1", + "building_ref": "IMB/92040/C/0511", + "street": "CHEMIN DES VIGNES", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 1, + "is_ftte": 0, + "is_ftth": 1 + }, + "id": 89129, + "type": "Feature" + }, + { + "geometry": { + "type": "Point", + "coordinates": [ + 920, + 2908 + ] + }, + "properties": { + "insee_code": "92040", + "kosc_street_code": "920409640", + "street_number": "148", + "street": "AVENUE DE VERDUN", + "city": "ISSY LES MOULINEAUX", + "zip_code": "92130", + "building_count": 0, + "is_ftte": 0, + "is_ftth": 0 + }, + "id": 85909, + "type": "Feature" + } + ], + "type": "FeatureCollection" + }, + "parcels": { + "extent": 4096, + "version": 2, + "features": [ + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 4160, + 84 + ], + [ + 4160, + 7 + ], + [ + 4071, + -61 + ], + [ + 4067, + -64 + ], + [ + 3968, + -64 + ], + [ + 4075, + 17 + ], + [ + 4106, + 33 + ], + [ + 3945, + 238 + ], + [ + 4105, + 41 + ], + [ + 4138, + 61 + ], + [ + 4135, + 64 + ], + [ + 4160, + 84 + ] + ] + ], + [ + [ + [ + 3289, + 1799 + ], + [ + 3290, + 1804 + ], + [ + 3336, + 1860 + ], + [ + 3181, + 2150 + ], + [ + 3088, + 2229 + ], + [ + 2990, + 2412 + ], + [ + 2972, + 2480 + ], + [ + 2996, + 2492 + ], + [ + 2999, + 2548 + ], + [ + 3034, + 2620 + ], + [ + 3065, + 2651 + ], + [ + 3113, + 2680 + ], + [ + 3120, + 2684 + ], + [ + 3239, + 2730 + ], + [ + 3218, + 2791 + ], + [ + 3253, + 2751 + ], + [ + 3258, + 2737 + ], + [ + 3264, + 2739 + ], + [ + 3307, + 2690 + ], + [ + 3273, + 2677 + ], + [ + 3177, + 2641 + ], + [ + 3147, + 2629 + ], + [ + 3108, + 2606 + ], + [ + 3077, + 2573 + ], + [ + 3060, + 2539 + ], + [ + 3053, + 2501 + ], + [ + 3063, + 2447 + ], + [ + 3073, + 2427 + ], + [ + 3126, + 2445 + ], + [ + 3165, + 2459 + ], + [ + 3208, + 2474 + ], + [ + 3236, + 2484 + ], + [ + 3332, + 2520 + ], + [ + 3331, + 2522 + ], + [ + 3415, + 2555 + ], + [ + 3415, + 2554 + ], + [ + 3424, + 2558 + ], + [ + 3431, + 2550 + ], + [ + 3410, + 2541 + ], + [ + 3372, + 2526 + ], + [ + 3341, + 2514 + ], + [ + 3343, + 2510 + ], + [ + 3271, + 2484 + ], + [ + 3242, + 2474 + ], + [ + 3204, + 2460 + ], + [ + 3173, + 2449 + ], + [ + 3079, + 2415 + ], + [ + 3128, + 2324 + ], + [ + 3147, + 2288 + ], + [ + 3150, + 2284 + ], + [ + 3178, + 2232 + ], + [ + 3199, + 2192 + ], + [ + 3217, + 2158 + ], + [ + 3236, + 2124 + ], + [ + 3255, + 2088 + ], + [ + 3276, + 2050 + ], + [ + 3323, + 1962 + ], + [ + 3358, + 1898 + ], + [ + 3383, + 1850 + ], + [ + 3466, + 1947 + ], + [ + 3496, + 1981 + ], + [ + 3522, + 2011 + ], + [ + 3550, + 2044 + ], + [ + 3566, + 2062 + ], + [ + 3588, + 2088 + ], + [ + 3614, + 2117 + ], + [ + 3618, + 2122 + ], + [ + 3613, + 2132 + ], + [ + 3646, + 2165 + ], + [ + 3649, + 2157 + ], + [ + 3673, + 2185 + ], + [ + 3705, + 2223 + ], + [ + 3712, + 2231 + ], + [ + 3753, + 2184 + ], + [ + 3734, + 2164 + ], + [ + 3616, + 2027 + ], + [ + 3596, + 2003 + ], + [ + 3526, + 1923 + ], + [ + 3543, + 1888 + ], + [ + 3550, + 1874 + ], + [ + 3639, + 1913 + ], + [ + 3665, + 1924 + ], + [ + 3794, + 1980 + ], + [ + 3810, + 2014 + ], + [ + 3840, + 2028 + ], + [ + 3872, + 2043 + ], + [ + 3876, + 2045 + ], + [ + 3912, + 2004 + ], + [ + 3905, + 2001 + ], + [ + 3883, + 1990 + ], + [ + 3845, + 1973 + ], + [ + 3786, + 1946 + ], + [ + 3772, + 1940 + ], + [ + 3739, + 1925 + ], + [ + 3721, + 1917 + ], + [ + 3711, + 1913 + ], + [ + 3701, + 1908 + ], + [ + 3670, + 1894 + ], + [ + 3651, + 1885 + ], + [ + 3577, + 1852 + ], + [ + 3622, + 1790 + ], + [ + 3644, + 1760 + ], + [ + 3685, + 1703 + ], + [ + 3705, + 1674 + ], + [ + 3727, + 1645 + ], + [ + 3749, + 1614 + ], + [ + 3769, + 1587 + ], + [ + 3793, + 1554 + ], + [ + 3821, + 1515 + ], + [ + 3850, + 1476 + ], + [ + 3878, + 1437 + ], + [ + 3909, + 1430 + ], + [ + 3945, + 1457 + ], + [ + 3960, + 1468 + ], + [ + 3983, + 1485 + ], + [ + 4001, + 1498 + ], + [ + 4040, + 1528 + ], + [ + 4071, + 1551 + ], + [ + 4104, + 1575 + ], + [ + 4134, + 1598 + ], + [ + 4160, + 1616 + ], + [ + 4160, + 1534 + ], + [ + 4137, + 1536 + ], + [ + 4115, + 1519 + ], + [ + 4074, + 1489 + ], + [ + 4021, + 1449 + ], + [ + 3953, + 1399 + ], + [ + 3940, + 1389 + ], + [ + 3936, + 1363 + ], + [ + 3963, + 1328 + ], + [ + 4017, + 1257 + ], + [ + 4069, + 1189 + ], + [ + 4120, + 1122 + ], + [ + 4150, + 1083 + ], + [ + 4160, + 1071 + ], + [ + 4160, + 985 + ], + [ + 4156, + 990 + ], + [ + 4126, + 1030 + ], + [ + 4095, + 1070 + ], + [ + 4078, + 1093 + ], + [ + 4060, + 1116 + ], + [ + 4034, + 1151 + ], + [ + 4001, + 1194 + ], + [ + 3958, + 1250 + ], + [ + 3916, + 1305 + ], + [ + 3875, + 1365 + ], + [ + 3853, + 1402 + ], + [ + 3833, + 1431 + ], + [ + 3811, + 1460 + ], + [ + 3790, + 1490 + ], + [ + 3748, + 1547 + ], + [ + 3728, + 1575 + ], + [ + 3707, + 1603 + ], + [ + 3686, + 1632 + ], + [ + 3665, + 1662 + ], + [ + 3643, + 1691 + ], + [ + 3622, + 1720 + ], + [ + 3602, + 1748 + ], + [ + 3560, + 1806 + ], + [ + 3538, + 1837 + ], + [ + 3467, + 1804 + ], + [ + 3468, + 1803 + ], + [ + 3397, + 1773 + ], + [ + 3345, + 1714 + ], + [ + 3205, + 1580 + ], + [ + 3216, + 1568 + ], + [ + 3217, + 1549 + ], + [ + 3180, + 1514 + ], + [ + 3162, + 1514 + ], + [ + 3150, + 1527 + ], + [ + 3011, + 1391 + ], + [ + 2766, + 1094 + ], + [ + 2723, + 1042 + ], + [ + 2695, + 1008 + ], + [ + 2685, + 996 + ], + [ + 2650, + 953 + ], + [ + 2613, + 909 + ], + [ + 2589, + 880 + ], + [ + 2546, + 828 + ], + [ + 2504, + 779 + ], + [ + 2460, + 812 + ], + [ + 2505, + 865 + ], + [ + 3036, + 1500 + ], + [ + 3086, + 1551 + ], + [ + 3085, + 1559 + ], + [ + 3158, + 1646 + ], + [ + 3187, + 1646 + ], + [ + 3219, + 1676 + ], + [ + 3335, + 1793 + ], + [ + 3336, + 1807 + ], + [ + 3323, + 1832 + ], + [ + 3289, + 1799 + ] + ] + ], + [ + [ + [ + 3344, + 2510 + ], + [ + 3363, + 2471 + ], + [ + 3343, + 2510 + ], + [ + 3344, + 2510 + ] + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171713, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 116, + 1864 + ], + [ + 227, + 1487 + ], + [ + 236, + 1353 + ], + [ + 37, + 1336 + ], + [ + -64, + 1310 + ], + [ + -64, + 1748 + ], + [ + -52, + 1751 + ], + [ + 35, + 1797 + ], + [ + 76, + 1820 + ], + [ + 116, + 1864 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63375, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1257, + 1357 + ], + [ + 1267, + 1307 + ], + [ + 1132, + 1278 + ], + [ + 1113, + 1325 + ], + [ + 1257, + 1357 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12119, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 560, + 1366 + ], + [ + 574, + 1330 + ], + [ + 484, + 1308 + ], + [ + 488, + 1363 + ], + [ + 560, + 1366 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10058, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 985, + 1375 + ], + [ + 1000, + 1337 + ], + [ + 920, + 1306 + ], + [ + 905, + 1345 + ], + [ + 985, + 1375 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10992, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1076, + 1418 + ], + [ + 1107, + 1341 + ], + [ + 1012, + 1305 + ], + [ + 982, + 1382 + ], + [ + 1076, + 1418 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11568, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 619, + 1562 + ], + [ + 669, + 1396 + ], + [ + 651, + 1392 + ], + [ + 602, + 1552 + ], + [ + 619, + 1562 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66400, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76, + 1820 + ], + [ + 35, + 1797 + ], + [ + -44, + 1755 + ], + [ + 76, + 1820 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171597, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -45, + 1755 + ], + [ + -52, + 1751 + ], + [ + -64, + 1748 + ], + [ + -64, + 1749 + ], + [ + -45, + 1755 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171627, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 759, + 1604 + ], + [ + 803, + 1424 + ], + [ + 766, + 1419 + ], + [ + 719, + 1598 + ], + [ + 759, + 1604 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66956, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 810, + 1611 + ], + [ + 854, + 1434 + ], + [ + 803, + 1424 + ], + [ + 759, + 1604 + ], + [ + 810, + 1611 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67619, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 719, + 1598 + ], + [ + 766, + 1419 + ], + [ + 729, + 1411 + ], + [ + 678, + 1587 + ], + [ + 719, + 1598 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66511, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 678, + 1587 + ], + [ + 729, + 1411 + ], + [ + 700, + 1404 + ], + [ + 647, + 1575 + ], + [ + 678, + 1587 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66459, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 647, + 1575 + ], + [ + 672, + 1491 + ], + [ + 643, + 1482 + ], + [ + 619, + 1562 + ], + [ + 647, + 1575 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67015, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1002, + 1609 + ], + [ + 1044, + 1493 + ], + [ + 998, + 1470 + ], + [ + 968, + 1558 + ], + [ + 954, + 1601 + ], + [ + 1002, + 1609 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64113, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1018, + 1613 + ], + [ + 1003, + 1608 + ], + [ + 1002, + 1609 + ], + [ + 954, + 1601 + ], + [ + 1018, + 1613 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171545, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 998, + 1675 + ], + [ + 1018, + 1613 + ], + [ + 954, + 1601 + ], + [ + 938, + 1650 + ], + [ + 998, + 1675 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65744, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 938, + 1650 + ], + [ + 956, + 1596 + ], + [ + 928, + 1590 + ], + [ + 914, + 1639 + ], + [ + 938, + 1650 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65682, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 881, + 1627 + ], + [ + 893, + 1585 + ], + [ + 956, + 1596 + ], + [ + 968, + 1558 + ], + [ + 902, + 1539 + ], + [ + 877, + 1626 + ], + [ + 881, + 1627 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67746, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 865, + 1622 + ], + [ + 908, + 1476 + ], + [ + 988, + 1499 + ], + [ + 998, + 1470 + ], + [ + 910, + 1448 + ], + [ + 859, + 1621 + ], + [ + 865, + 1622 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63591, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 872, + 1624 + ], + [ + 905, + 1510 + ], + [ + 977, + 1531 + ], + [ + 988, + 1499 + ], + [ + 908, + 1476 + ], + [ + 865, + 1622 + ], + [ + 872, + 1624 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68427, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 877, + 1626 + ], + [ + 902, + 1539 + ], + [ + 968, + 1558 + ], + [ + 977, + 1531 + ], + [ + 905, + 1510 + ], + [ + 872, + 1624 + ], + [ + 877, + 1626 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67815, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 859, + 1621 + ], + [ + 910, + 1448 + ], + [ + 854, + 1434 + ], + [ + 810, + 1611 + ], + [ + 859, + 1621 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67669, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 949, + 1819 + ], + [ + 973, + 1747 + ], + [ + 860, + 1699 + ], + [ + 846, + 1747 + ], + [ + 949, + 1819 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66830, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 914, + 1639 + ], + [ + 928, + 1590 + ], + [ + 893, + 1585 + ], + [ + 881, + 1627 + ], + [ + 914, + 1639 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65630, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1033, + 1820 + ], + [ + 1046, + 1778 + ], + [ + 1012, + 1764 + ], + [ + 998, + 1808 + ], + [ + 1033, + 1820 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66780, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1037, + 1691 + ], + [ + 1078, + 1573 + ], + [ + 1022, + 1552 + ], + [ + 1003, + 1608 + ], + [ + 1018, + 1613 + ], + [ + 998, + 1675 + ], + [ + 1037, + 1691 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65040, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1067, + 1704 + ], + [ + 1092, + 1635 + ], + [ + 1059, + 1628 + ], + [ + 1037, + 1691 + ], + [ + 1067, + 1704 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66252, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1078, + 1573 + ], + [ + 1100, + 1517 + ], + [ + 1044, + 1493 + ], + [ + 1022, + 1552 + ], + [ + 1078, + 1573 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64515, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1097, + 1717 + ], + [ + 1126, + 1642 + ], + [ + 1092, + 1633 + ], + [ + 1067, + 1704 + ], + [ + 1097, + 1717 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68283, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1195, + 1655 + ], + [ + 1196, + 1648 + ], + [ + 1126, + 1632 + ], + [ + 1136, + 1583 + ], + [ + 1079, + 1571 + ], + [ + 1059, + 1628 + ], + [ + 1195, + 1655 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64629, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1152, + 1741 + ], + [ + 1152, + 1647 + ], + [ + 1126, + 1642 + ], + [ + 1097, + 1717 + ], + [ + 1152, + 1741 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68224, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1152, + 1647 + ], + [ + 1119, + 1640 + ], + [ + 1126, + 1642 + ], + [ + 1152, + 1647 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171542, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1207, + 1599 + ], + [ + 1219, + 1542 + ], + [ + 1100, + 1517 + ], + [ + 1079, + 1571 + ], + [ + 1136, + 1583 + ], + [ + 1207, + 1599 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64245, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1164, + 1746 + ], + [ + 1177, + 1738 + ], + [ + 1187, + 1694 + ], + [ + 1152, + 1686 + ], + [ + 1152, + 1741 + ], + [ + 1164, + 1746 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67509, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1196, + 1648 + ], + [ + 1207, + 1599 + ], + [ + 1136, + 1583 + ], + [ + 1126, + 1632 + ], + [ + 1196, + 1648 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67559, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1187, + 1694 + ], + [ + 1195, + 1655 + ], + [ + 1152, + 1647 + ], + [ + 1152, + 1686 + ], + [ + 1187, + 1694 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67705, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 399, + 1366 + ], + [ + 395, + 1337 + ], + [ + 344, + 1326 + ], + [ + 337, + 1356 + ], + [ + 399, + 1366 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9284, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1248, + 1402 + ], + [ + 1257, + 1357 + ], + [ + 1113, + 1325 + ], + [ + 1107, + 1341 + ], + [ + 1096, + 1368 + ], + [ + 1248, + 1402 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12027, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 970, + 1412 + ], + [ + 985, + 1375 + ], + [ + 905, + 1345 + ], + [ + 891, + 1382 + ], + [ + 970, + 1412 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9210, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 639, + 1428 + ], + [ + 651, + 1392 + ], + [ + 570, + 1375 + ], + [ + 562, + 1404 + ], + [ + 639, + 1428 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65827, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1238, + 1446 + ], + [ + 1248, + 1402 + ], + [ + 1096, + 1368 + ], + [ + 1078, + 1412 + ], + [ + 1238, + 1446 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11888, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 935, + 1448 + ], + [ + 951, + 1405 + ], + [ + 891, + 1382 + ], + [ + 873, + 1432 + ], + [ + 935, + 1448 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12879, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1061, + 1454 + ], + [ + 1076, + 1418 + ], + [ + 982, + 1382 + ], + [ + 968, + 1417 + ], + [ + 1061, + 1454 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11203, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 509, + 1456 + ], + [ + 533, + 1371 + ], + [ + 479, + 1371 + ], + [ + 493, + 1425 + ], + [ + 509, + 1456 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65189, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1122, + 1467 + ], + [ + 1130, + 1428 + ], + [ + 1238, + 1446 + ], + [ + 1078, + 1412 + ], + [ + 1061, + 1454 + ], + [ + 1122, + 1467 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11492, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1025, + 1476 + ], + [ + 1040, + 1445 + ], + [ + 968, + 1417 + ], + [ + 955, + 1451 + ], + [ + 1025, + 1476 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12189, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 526, + 1483 + ], + [ + 549, + 1405 + ], + [ + 553, + 1371 + ], + [ + 533, + 1371 + ], + [ + 509, + 1456 + ], + [ + 526, + 1483 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65283, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1229, + 1491 + ], + [ + 1237, + 1451 + ], + [ + 1130, + 1428 + ], + [ + 1122, + 1467 + ], + [ + 1153, + 1474 + ], + [ + 1229, + 1491 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9219, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 672, + 1491 + ], + [ + 700, + 1404 + ], + [ + 669, + 1396 + ], + [ + 643, + 1482 + ], + [ + 672, + 1491 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67077, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 544, + 1505 + ], + [ + 573, + 1407 + ], + [ + 562, + 1404 + ], + [ + 570, + 1375 + ], + [ + 553, + 1371 + ], + [ + 549, + 1405 + ], + [ + 526, + 1483 + ], + [ + 544, + 1505 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65349, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 568, + 1527 + ], + [ + 603, + 1417 + ], + [ + 573, + 1407 + ], + [ + 544, + 1505 + ], + [ + 568, + 1527 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65771, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1220, + 1536 + ], + [ + 1229, + 1491 + ], + [ + 1153, + 1474 + ], + [ + 1152, + 1495 + ], + [ + 1134, + 1492 + ], + [ + 1133, + 1517 + ], + [ + 1220, + 1536 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9586, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 602, + 1552 + ], + [ + 643, + 1417 + ], + [ + 639, + 1428 + ], + [ + 602, + 1552 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171561, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 602, + 1552 + ], + [ + 639, + 1428 + ], + [ + 603, + 1417 + ], + [ + 568, + 1527 + ], + [ + 602, + 1552 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65878, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 401, + 1560 + ], + [ + 437, + 1483 + ], + [ + 401, + 1380 + ], + [ + 236, + 1353 + ], + [ + 223, + 1553 + ], + [ + 329, + 1535 + ], + [ + 401, + 1560 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64765, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1057, + 4160 + ], + [ + 1052, + 4104 + ], + [ + 1008, + 4109 + ], + [ + 1012, + 4160 + ], + [ + 1057, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74854, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 488, + 4160 + ], + [ + 488, + 4159 + ], + [ + 477, + 4160 + ], + [ + 488, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76377, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 560, + 4160 + ], + [ + 560, + 4152 + ], + [ + 488, + 4159 + ], + [ + 488, + 4160 + ], + [ + 560, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73264, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 646, + 4160 + ], + [ + 645, + 4144 + ], + [ + 560, + 4152 + ], + [ + 560, + 4160 + ], + [ + 646, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73341, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 730, + 4160 + ], + [ + 728, + 4136 + ], + [ + 645, + 4144 + ], + [ + 646, + 4160 + ], + [ + 730, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73436, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 805, + 4160 + ], + [ + 803, + 4129 + ], + [ + 728, + 4136 + ], + [ + 730, + 4160 + ], + [ + 805, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74192, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 918, + 4160 + ], + [ + 915, + 4118 + ], + [ + 803, + 4129 + ], + [ + 805, + 4160 + ], + [ + 918, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74276, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 944, + 4160 + ], + [ + 940, + 4115 + ], + [ + 915, + 4118 + ], + [ + 918, + 4160 + ], + [ + 944, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74439, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 970, + 4160 + ], + [ + 966, + 4113 + ], + [ + 940, + 4115 + ], + [ + 944, + 4160 + ], + [ + 970, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74928, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1012, + 4160 + ], + [ + 1008, + 4109 + ], + [ + 966, + 4113 + ], + [ + 970, + 4160 + ], + [ + 1012, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74991, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1475, + 4160 + ], + [ + 1492, + 4083 + ], + [ + 1476, + 4063 + ], + [ + 1337, + 4077 + ], + [ + 1280, + 4128 + ], + [ + 1273, + 4160 + ], + [ + 1475, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71537, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1221, + 4160 + ], + [ + 1234, + 4100 + ], + [ + 1222, + 4088 + ], + [ + 1125, + 4097 + ], + [ + 1130, + 4160 + ], + [ + 1221, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75620, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1130, + 4160 + ], + [ + 1125, + 4097 + ], + [ + 1097, + 4100 + ], + [ + 1102, + 4160 + ], + [ + 1130, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75529, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1102, + 4160 + ], + [ + 1097, + 4100 + ], + [ + 1052, + 4104 + ], + [ + 1057, + 4160 + ], + [ + 1102, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75100, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 263, + 1032 + ], + [ + 320, + 928 + ], + [ + 249, + 888 + ], + [ + 202, + 977 + ], + [ + 235, + 995 + ], + [ + 226, + 1012 + ], + [ + 263, + 1032 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2347, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 320, + 928 + ], + [ + 359, + 856 + ], + [ + 209, + 775 + ], + [ + 171, + 817 + ], + [ + 234, + 856 + ], + [ + 224, + 874 + ], + [ + 320, + 928 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1466, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 341, + 632 + ], + [ + 406, + 580 + ], + [ + 196, + 475 + ], + [ + 170, + 522 + ], + [ + 341, + 632 + ] + ] + ] + }, + "properties": { + "insee_code": "92048", + "forfait_mode": 1 + }, + "id": 113828, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 402, + 578 + ], + [ + 411, + 568 + ], + [ + 311, + 513 + ], + [ + 333, + 470 + ], + [ + 268, + 439 + ], + [ + 255, + 402 + ], + [ + 241, + 395 + ], + [ + 196, + 475 + ], + [ + 402, + 578 + ] + ] + ] + }, + "properties": { + "insee_code": "92048", + "forfait_mode": 1 + }, + "id": 124316, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 359, + 856 + ], + [ + 429, + 730 + ], + [ + 447, + 576 + ], + [ + 209, + 775 + ], + [ + 359, + 856 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 129, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 394, + 1307 + ], + [ + 397, + 1271 + ], + [ + 276, + 1242 + ], + [ + 261, + 1273 + ], + [ + 394, + 1307 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8035, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 397, + 1271 + ], + [ + 413, + 1202 + ], + [ + 307, + 1178 + ], + [ + 276, + 1242 + ], + [ + 397, + 1271 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8207, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 378, + 1041 + ], + [ + 395, + 1007 + ], + [ + 330, + 973 + ], + [ + 312, + 1007 + ], + [ + 378, + 1041 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2042, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 452, + 528 + ], + [ + 458, + 476 + ], + [ + 372, + 423 + ], + [ + 278, + 368 + ], + [ + 255, + 402 + ], + [ + 268, + 439 + ], + [ + 452, + 528 + ] + ] + ] + }, + "properties": { + "insee_code": "92048", + "forfait_mode": 1 + }, + "id": 124328, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 487, + 953 + ], + [ + 505, + 902 + ], + [ + 449, + 885 + ], + [ + 444, + 900 + ], + [ + 387, + 870 + ], + [ + 367, + 906 + ], + [ + 452, + 950 + ], + [ + 457, + 937 + ], + [ + 487, + 953 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1765, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 460, + 856 + ], + [ + 491, + 775 + ], + [ + 467, + 743 + ], + [ + 474, + 729 + ], + [ + 468, + 721 + ], + [ + 408, + 829 + ], + [ + 460, + 856 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 347, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 460, + 1089 + ], + [ + 484, + 1061 + ], + [ + 416, + 1020 + ], + [ + 395, + 1007 + ], + [ + 378, + 1041 + ], + [ + 460, + 1089 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2196, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 444, + 900 + ], + [ + 460, + 856 + ], + [ + 408, + 829 + ], + [ + 387, + 870 + ], + [ + 444, + 900 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1716, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 424, + 1142 + ], + [ + 460, + 1089 + ], + [ + 391, + 1049 + ], + [ + 356, + 1115 + ], + [ + 424, + 1142 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2289, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 430, + 992 + ], + [ + 452, + 950 + ], + [ + 367, + 906 + ], + [ + 349, + 939 + ], + [ + 413, + 971 + ], + [ + 409, + 979 + ], + [ + 430, + 992 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1811, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 411, + 568 + ], + [ + 452, + 528 + ], + [ + 333, + 470 + ], + [ + 311, + 513 + ], + [ + 411, + 568 + ] + ] + ] + }, + "properties": { + "insee_code": "92048", + "forfait_mode": 1 + }, + "id": 124327, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 416, + 1020 + ], + [ + 430, + 992 + ], + [ + 409, + 979 + ], + [ + 413, + 971 + ], + [ + 349, + 939 + ], + [ + 330, + 973 + ], + [ + 416, + 1020 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1915, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 409, + 1171 + ], + [ + 424, + 1142 + ], + [ + 342, + 1109 + ], + [ + 325, + 1143 + ], + [ + 320, + 1152 + ], + [ + 409, + 1171 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1641, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 413, + 1202 + ], + [ + 424, + 1175 + ], + [ + 320, + 1152 + ], + [ + 308, + 1176 + ], + [ + 413, + 1202 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8381, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 588, + 1292 + ], + [ + 600, + 1259 + ], + [ + 488, + 1223 + ], + [ + 477, + 1260 + ], + [ + 588, + 1292 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10361, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 542, + 1016 + ], + [ + 573, + 1000 + ], + [ + 487, + 953 + ], + [ + 457, + 937 + ], + [ + 444, + 965 + ], + [ + 542, + 1016 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1861, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 523, + 908 + ], + [ + 553, + 811 + ], + [ + 535, + 808 + ], + [ + 515, + 781 + ], + [ + 473, + 892 + ], + [ + 523, + 908 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2488, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 484, + 863 + ], + [ + 515, + 781 + ], + [ + 498, + 758 + ], + [ + 491, + 775 + ], + [ + 461, + 855 + ], + [ + 484, + 863 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3733, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 484, + 1061 + ], + [ + 542, + 1016 + ], + [ + 444, + 965 + ], + [ + 416, + 1020 + ], + [ + 484, + 1061 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 1992, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 491, + 775 + ], + [ + 498, + 758 + ], + [ + 474, + 729 + ], + [ + 467, + 743 + ], + [ + 491, + 775 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2444, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 573, + 1000 + ], + [ + 613, + 981 + ], + [ + 520, + 933 + ], + [ + 528, + 909 + ], + [ + 505, + 902 + ], + [ + 487, + 953 + ], + [ + 573, + 1000 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3631, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 600, + 1259 + ], + [ + 613, + 1223 + ], + [ + 518, + 1190 + ], + [ + 500, + 1227 + ], + [ + 600, + 1259 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10117, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 613, + 1223 + ], + [ + 625, + 1192 + ], + [ + 526, + 1154 + ], + [ + 505, + 1186 + ], + [ + 613, + 1223 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10172, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 625, + 1192 + ], + [ + 637, + 1161 + ], + [ + 554, + 1126 + ], + [ + 526, + 1154 + ], + [ + 625, + 1192 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11067, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 632, + 941 + ], + [ + 643, + 912 + ], + [ + 556, + 885 + ], + [ + 577, + 814 + ], + [ + 553, + 811 + ], + [ + 523, + 908 + ], + [ + 632, + 941 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2684, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 613, + 981 + ], + [ + 672, + 964 + ], + [ + 675, + 954 + ], + [ + 528, + 909 + ], + [ + 520, + 933 + ], + [ + 613, + 981 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2627, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 637, + 1161 + ], + [ + 653, + 1124 + ], + [ + 671, + 1076 + ], + [ + 600, + 1104 + ], + [ + 586, + 1098 + ], + [ + 554, + 1126 + ], + [ + 637, + 1161 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3549, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 643, + 912 + ], + [ + 653, + 884 + ], + [ + 591, + 864 + ], + [ + 604, + 819 + ], + [ + 577, + 814 + ], + [ + 556, + 885 + ], + [ + 643, + 912 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2828, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 675, + 954 + ], + [ + 719, + 837 + ], + [ + 604, + 819 + ], + [ + 591, + 864 + ], + [ + 653, + 884 + ], + [ + 632, + 941 + ], + [ + 675, + 954 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2578, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 688, + 1139 + ], + [ + 721, + 1049 + ], + [ + 677, + 1060 + ], + [ + 652, + 1126 + ], + [ + 688, + 1139 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3475, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 672, + 964 + ], + [ + 717, + 954 + ], + [ + 758, + 843 + ], + [ + 719, + 837 + ], + [ + 675, + 954 + ], + [ + 672, + 964 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2521, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 724, + 1153 + ], + [ + 767, + 1039 + ], + [ + 721, + 1049 + ], + [ + 688, + 1139 + ], + [ + 724, + 1153 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3383, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 762, + 944 + ], + [ + 806, + 935 + ], + [ + 835, + 856 + ], + [ + 789, + 849 + ], + [ + 785, + 859 + ], + [ + 792, + 861 + ], + [ + 762, + 944 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3846, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 808, + 1184 + ], + [ + 871, + 1017 + ], + [ + 812, + 1030 + ], + [ + 760, + 1166 + ], + [ + 808, + 1184 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2984, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 760, + 1166 + ], + [ + 812, + 1030 + ], + [ + 789, + 1034 + ], + [ + 771, + 1081 + ], + [ + 742, + 1160 + ], + [ + 760, + 1166 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4415, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 742, + 1160 + ], + [ + 789, + 1034 + ], + [ + 767, + 1039 + ], + [ + 724, + 1153 + ], + [ + 742, + 1160 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3311, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 717, + 954 + ], + [ + 762, + 944 + ], + [ + 792, + 861 + ], + [ + 785, + 859 + ], + [ + 789, + 849 + ], + [ + 758, + 843 + ], + [ + 717, + 954 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2777, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 844, + 1198 + ], + [ + 850, + 1181 + ], + [ + 914, + 1008 + ], + [ + 871, + 1017 + ], + [ + 808, + 1184 + ], + [ + 844, + 1198 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5197, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 806, + 935 + ], + [ + 882, + 919 + ], + [ + 890, + 865 + ], + [ + 835, + 856 + ], + [ + 806, + 935 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4062, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 879, + 938 + ], + [ + 1007, + 910 + ], + [ + 1007, + 884 + ], + [ + 890, + 865 + ], + [ + 879, + 938 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4206, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 942, + 1140 + ], + [ + 998, + 991 + ], + [ + 914, + 1008 + ], + [ + 875, + 1114 + ], + [ + 942, + 1140 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5143, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1000, + 1337 + ], + [ + 1012, + 1305 + ], + [ + 1033, + 1251 + ], + [ + 850, + 1181 + ], + [ + 844, + 1198 + ], + [ + 875, + 1210 + ], + [ + 863, + 1242 + ], + [ + 898, + 1255 + ], + [ + 884, + 1292 + ], + [ + 1000, + 1337 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 2880, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1014, + 1244 + ], + [ + 1039, + 1178 + ], + [ + 875, + 1114 + ], + [ + 850, + 1181 + ], + [ + 1014, + 1244 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4599, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1040, + 1178 + ], + [ + 1056, + 1135 + ], + [ + 958, + 1097 + ], + [ + 942, + 1140 + ], + [ + 1040, + 1178 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4649, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1110, + 1052 + ], + [ + 1146, + 960 + ], + [ + 1042, + 981 + ], + [ + 1028, + 1021 + ], + [ + 1110, + 1052 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3988, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1107, + 1341 + ], + [ + 1138, + 1262 + ], + [ + 1042, + 1226 + ], + [ + 1012, + 1305 + ], + [ + 1107, + 1341 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9487, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1072, + 1097 + ], + [ + 1091, + 1045 + ], + [ + 1028, + 1021 + ], + [ + 1008, + 1072 + ], + [ + 1072, + 1097 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3544, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1008, + 1072 + ], + [ + 1042, + 981 + ], + [ + 998, + 991 + ], + [ + 972, + 1058 + ], + [ + 1008, + 1072 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 3929, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1056, + 1135 + ], + [ + 1072, + 1097 + ], + [ + 972, + 1058 + ], + [ + 958, + 1097 + ], + [ + 1056, + 1135 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5586, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1199, + 1110 + ], + [ + 1221, + 1054 + ], + [ + 1143, + 1024 + ], + [ + 1121, + 1080 + ], + [ + 1199, + 1110 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4224, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1221, + 1054 + ], + [ + 1239, + 1007 + ], + [ + 1205, + 994 + ], + [ + 1226, + 944 + ], + [ + 1183, + 952 + ], + [ + 1164, + 968 + ], + [ + 1143, + 1024 + ], + [ + 1221, + 1054 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7079, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1267, + 1307 + ], + [ + 1277, + 1263 + ], + [ + 1158, + 1213 + ], + [ + 1132, + 1278 + ], + [ + 1267, + 1307 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12271, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1277, + 1263 + ], + [ + 1298, + 1212 + ], + [ + 1178, + 1162 + ], + [ + 1168, + 1187 + ], + [ + 1158, + 1213 + ], + [ + 1277, + 1263 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4817, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1239, + 1007 + ], + [ + 1249, + 984 + ], + [ + 1239, + 979 + ], + [ + 1257, + 937 + ], + [ + 1226, + 944 + ], + [ + 1205, + 994 + ], + [ + 1239, + 1007 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6653, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1298, + 1212 + ], + [ + 1315, + 1172 + ], + [ + 1194, + 1121 + ], + [ + 1178, + 1162 + ], + [ + 1298, + 1212 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4741, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1315, + 1172 + ], + [ + 1329, + 1139 + ], + [ + 1207, + 1088 + ], + [ + 1199, + 1110 + ], + [ + 1194, + 1121 + ], + [ + 1315, + 1172 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4345, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1168, + 851 + ], + [ + 1780, + 721 + ], + [ + 1862, + 680 + ], + [ + 1922, + 616 + ], + [ + 1955, + 550 + ], + [ + 1995, + 384 + ], + [ + 2007, + 270 + ], + [ + 1997, + 254 + ], + [ + 2001, + 216 + ], + [ + 2015, + 202 + ], + [ + 2044, + -64 + ], + [ + 575, + -64 + ], + [ + 564, + 19 + ], + [ + 800, + 99 + ], + [ + 520, + 476 + ], + [ + 504, + 664 + ], + [ + 575, + 751 + ], + [ + 1168, + 851 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10254, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1340, + 1028 + ], + [ + 1391, + 909 + ], + [ + 1351, + 917 + ], + [ + 1310, + 1016 + ], + [ + 1340, + 1028 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6117, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1359, + 1069 + ], + [ + 1367, + 1051 + ], + [ + 1312, + 1025 + ], + [ + 1303, + 1045 + ], + [ + 1359, + 1069 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6046, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1367, + 1051 + ], + [ + 1371, + 1042 + ], + [ + 1310, + 1016 + ], + [ + 1320, + 992 + ], + [ + 1294, + 983 + ], + [ + 1286, + 1001 + ], + [ + 1263, + 990 + ], + [ + 1250, + 1023 + ], + [ + 1303, + 1045 + ], + [ + 1312, + 1025 + ], + [ + 1367, + 1051 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5520, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1286, + 1001 + ], + [ + 1294, + 983 + ], + [ + 1320, + 992 + ], + [ + 1351, + 917 + ], + [ + 1257, + 937 + ], + [ + 1239, + 979 + ], + [ + 1286, + 1001 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6541, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1349, + 1093 + ], + [ + 1359, + 1069 + ], + [ + 1250, + 1023 + ], + [ + 1263, + 990 + ], + [ + 1249, + 984 + ], + [ + 1226, + 1041 + ], + [ + 1349, + 1093 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7152, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1329, + 1139 + ], + [ + 1349, + 1093 + ], + [ + 1226, + 1041 + ], + [ + 1221, + 1054 + ], + [ + 1207, + 1088 + ], + [ + 1329, + 1139 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4125, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 574, + 1330 + ], + [ + 588, + 1292 + ], + [ + 477, + 1260 + ], + [ + 471, + 1305 + ], + [ + 574, + 1330 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10527, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70, + 1339 + ], + [ + 57, + 1337 + ], + [ + 14, + 1330 + ], + [ + 37, + 1336 + ], + [ + 70, + 1339 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171554, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 395, + 1337 + ], + [ + 394, + 1307 + ], + [ + 315, + 1287 + ], + [ + 300, + 1317 + ], + [ + 395, + 1337 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8634, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 4160 + ], + [ + 4160, + 4061 + ], + [ + 4154, + 4063 + ], + [ + 4122, + 4160 + ], + [ + 4160, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115498, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3576, + 4078 + ], + [ + 3805, + 4160 + ], + [ + 3937, + 4160 + ], + [ + 3930, + 4157 + ], + [ + 3893, + 4142 + ], + [ + 3822, + 4114 + ], + [ + 3691, + 4061 + ], + [ + 3610, + 4028 + ], + [ + 3509, + 3987 + ], + [ + 3396, + 3986 + ], + [ + 3407, + 4012 + ], + [ + 3576, + 4078 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 169949, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 3388 + ], + [ + 4160, + 3128 + ], + [ + 4080, + 3154 + ], + [ + 3876, + 3121 + ], + [ + 3816, + 3323 + ], + [ + 3904, + 3345 + ], + [ + 3900, + 3352 + ], + [ + 4160, + 3388 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115496, + "type": "Feature" + }, + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 4160, + 3688 + ], + [ + 4160, + 3626 + ], + [ + 4120, + 3610 + ], + [ + 4014, + 3584 + ], + [ + 4004, + 3643 + ], + [ + 4030, + 3646 + ], + [ + 4133, + 3672 + ], + [ + 4160, + 3688 + ] + ] + ], + [ + [ + [ + 4084, + 4079 + ], + [ + 4154, + 4063 + ], + [ + 4135, + 4043 + ], + [ + 4160, + 4031 + ], + [ + 4160, + 4017 + ], + [ + 4142, + 4022 + ], + [ + 4130, + 4024 + ], + [ + 4066, + 4022 + ], + [ + 4024, + 4017 + ], + [ + 4005, + 4011 + ], + [ + 3958, + 3991 + ], + [ + 3865, + 3991 + ], + [ + 3874, + 3994 + ], + [ + 3944, + 4025 + ], + [ + 3976, + 4040 + ], + [ + 4024, + 4054 + ], + [ + 4092, + 4054 + ], + [ + 4084, + 4079 + ] + ] + ], + [ + [ + [ + 4160, + 4046 + ], + [ + 4154, + 4063 + ], + [ + 4160, + 4061 + ], + [ + 4160, + 4046 + ] + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 169907, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3436, + 3718 + ], + [ + 3467, + 3647 + ], + [ + 3392, + 3616 + ], + [ + 3362, + 3686 + ], + [ + 3436, + 3718 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75853, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3467, + 3647 + ], + [ + 3515, + 3537 + ], + [ + 3443, + 3498 + ], + [ + 3392, + 3616 + ], + [ + 3467, + 3647 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75826, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3515, + 3752 + ], + [ + 3552, + 3662 + ], + [ + 3475, + 3629 + ], + [ + 3436, + 3718 + ], + [ + 3515, + 3752 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76587, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3506, + 3986 + ], + [ + 3552, + 3880 + ], + [ + 3468, + 3844 + ], + [ + 3421, + 3951 + ], + [ + 3506, + 3986 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82508, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3552, + 3880 + ], + [ + 3562, + 3857 + ], + [ + 3479, + 3820 + ], + [ + 3468, + 3844 + ], + [ + 3552, + 3880 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83721, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3513, + 3645 + ], + [ + 3552, + 3555 + ], + [ + 3515, + 3537 + ], + [ + 3475, + 3629 + ], + [ + 3513, + 3645 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75995, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3521, + 3452 + ], + [ + 3607, + 3284 + ], + [ + 3583, + 3276 + ], + [ + 3486, + 3432 + ], + [ + 3521, + 3452 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115962, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3486, + 3432 + ], + [ + 3583, + 3276 + ], + [ + 3577, + 3274 + ], + [ + 3558, + 3267 + ], + [ + 3465, + 3420 + ], + [ + 3486, + 3432 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115963, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3465, + 3420 + ], + [ + 3558, + 3267 + ], + [ + 3535, + 3259 + ], + [ + 3443, + 3407 + ], + [ + 3465, + 3420 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115964, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3443, + 3407 + ], + [ + 3535, + 3259 + ], + [ + 3511, + 3250 + ], + [ + 3421, + 3393 + ], + [ + 3443, + 3407 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115391, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3421, + 3393 + ], + [ + 3511, + 3250 + ], + [ + 3485, + 3241 + ], + [ + 3399, + 3380 + ], + [ + 3421, + 3393 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115392, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3399, + 3380 + ], + [ + 3485, + 3241 + ], + [ + 3465, + 3234 + ], + [ + 3382, + 3369 + ], + [ + 3399, + 3380 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115393, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3382, + 3369 + ], + [ + 3465, + 3234 + ], + [ + 3445, + 3227 + ], + [ + 3364, + 3358 + ], + [ + 3382, + 3369 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115394, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3364, + 3358 + ], + [ + 3445, + 3227 + ], + [ + 3421, + 3218 + ], + [ + 3343, + 3345 + ], + [ + 3364, + 3358 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115395, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3343, + 3345 + ], + [ + 3421, + 3218 + ], + [ + 3398, + 3210 + ], + [ + 3322, + 3332 + ], + [ + 3343, + 3345 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115396, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3322, + 3332 + ], + [ + 3398, + 3210 + ], + [ + 3367, + 3199 + ], + [ + 3295, + 3315 + ], + [ + 3322, + 3332 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115397, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3295, + 3315 + ], + [ + 3367, + 3199 + ], + [ + 3337, + 3188 + ], + [ + 3327, + 3184 + ], + [ + 3261, + 3294 + ], + [ + 3295, + 3315 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115398, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3261, + 3294 + ], + [ + 3327, + 3184 + ], + [ + 3280, + 3168 + ], + [ + 3217, + 3267 + ], + [ + 3261, + 3294 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115400, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3261, + 3552 + ], + [ + 3323, + 3424 + ], + [ + 3261, + 3384 + ], + [ + 3251, + 3406 + ], + [ + 3200, + 3522 + ], + [ + 3261, + 3552 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81021, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3201, + 3521 + ], + [ + 3251, + 3406 + ], + [ + 3188, + 3369 + ], + [ + 3196, + 3344 + ], + [ + 3183, + 3337 + ], + [ + 3132, + 3434 + ], + [ + 3201, + 3521 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80976, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3148, + 3641 + ], + [ + 3226, + 3634 + ], + [ + 3261, + 3552 + ], + [ + 3200, + 3522 + ], + [ + 3148, + 3641 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75125, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3319, + 4160 + ], + [ + 3277, + 4100 + ], + [ + 3248, + 4160 + ], + [ + 3319, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82277, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3421, + 3951 + ], + [ + 3479, + 3820 + ], + [ + 3294, + 3742 + ], + [ + 3209, + 3729 + ], + [ + 3163, + 3738 + ], + [ + 3294, + 3900 + ], + [ + 3421, + 3951 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77508, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3362, + 3686 + ], + [ + 3433, + 3520 + ], + [ + 3313, + 3447 + ], + [ + 3227, + 3632 + ], + [ + 3362, + 3686 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81202, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3276, + 4098 + ], + [ + 3179, + 3955 + ], + [ + 2963, + 3857 + ], + [ + 2939, + 3859 + ], + [ + 2861, + 3905 + ], + [ + 2853, + 3928 + ], + [ + 2961, + 3945 + ], + [ + 3255, + 4081 + ], + [ + 3276, + 4098 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82219, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3095, + 3625 + ], + [ + 3148, + 3505 + ], + [ + 3114, + 3484 + ], + [ + 3055, + 3572 + ], + [ + 3095, + 3625 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84117, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3110, + 3646 + ], + [ + 3141, + 3642 + ], + [ + 3095, + 3625 + ], + [ + 3110, + 3646 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84786, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3148, + 3641 + ], + [ + 3201, + 3521 + ], + [ + 3163, + 3473 + ], + [ + 3096, + 3621 + ], + [ + 3148, + 3641 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84829, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3458, + 4160 + ], + [ + 3388, + 4040 + ], + [ + 3394, + 4042 + ], + [ + 3294, + 3900 + ], + [ + 3163, + 3738 + ], + [ + 3155, + 3743 + ], + [ + 3085, + 3663 + ], + [ + 2988, + 3529 + ], + [ + 2975, + 3486 + ], + [ + 2885, + 3402 + ], + [ + 2836, + 3313 + ], + [ + 2709, + 3212 + ], + [ + 2711, + 3226 + ], + [ + 2647, + 3316 + ], + [ + 2750, + 3399 + ], + [ + 2742, + 3417 + ], + [ + 2742, + 3438 + ], + [ + 3027, + 3692 + ], + [ + 3056, + 3695 + ], + [ + 3122, + 3771 + ], + [ + 3116, + 3777 + ], + [ + 3329, + 4061 + ], + [ + 3388, + 4160 + ], + [ + 3458, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76912, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3132, + 3434 + ], + [ + 3183, + 3337 + ], + [ + 3161, + 3323 + ], + [ + 3115, + 3412 + ], + [ + 3132, + 3434 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80919, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3148, + 3505 + ], + [ + 3163, + 3473 + ], + [ + 3141, + 3445 + ], + [ + 3114, + 3484 + ], + [ + 3148, + 3505 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75884, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3115, + 3412 + ], + [ + 3161, + 3323 + ], + [ + 3122, + 3299 + ], + [ + 3080, + 3368 + ], + [ + 3115, + 3412 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80225, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3028, + 3370 + ], + [ + 3080, + 3368 + ], + [ + 3122, + 3299 + ], + [ + 3079, + 3272 + ], + [ + 3028, + 3370 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78419, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3055, + 3572 + ], + [ + 3141, + 3445 + ], + [ + 3118, + 3416 + ], + [ + 3011, + 3510 + ], + [ + 3055, + 3572 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83321, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3011, + 3506 + ], + [ + 3118, + 3416 + ], + [ + 3099, + 3392 + ], + [ + 3003, + 3455 + ], + [ + 3011, + 3506 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83286, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3003, + 3455 + ], + [ + 3099, + 3392 + ], + [ + 3080, + 3368 + ], + [ + 3028, + 3370 + ], + [ + 2999, + 3370 + ], + [ + 3003, + 3455 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83261, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3039, + 3349 + ], + [ + 3079, + 3272 + ], + [ + 3035, + 3245 + ], + [ + 3015, + 3343 + ], + [ + 3039, + 3349 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78363, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3028, + 3370 + ], + [ + 3039, + 3349 + ], + [ + 3015, + 3343 + ], + [ + 2998, + 3339 + ], + [ + 2999, + 3370 + ], + [ + 3028, + 3370 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83225, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3015, + 3343 + ], + [ + 3035, + 3245 + ], + [ + 2994, + 3219 + ], + [ + 2998, + 3339 + ], + [ + 3015, + 3343 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78306, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2975, + 3486 + ], + [ + 2969, + 3368 + ], + [ + 2867, + 3372 + ], + [ + 2885, + 3402 + ], + [ + 2975, + 3486 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84065, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2867, + 3372 + ], + [ + 2969, + 3368 + ], + [ + 2967, + 3330 + ], + [ + 2870, + 3334 + ], + [ + 2859, + 3357 + ], + [ + 2867, + 3372 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84095, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2870, + 3334 + ], + [ + 2967, + 3330 + ], + [ + 2965, + 3279 + ], + [ + 2894, + 3282 + ], + [ + 2870, + 3334 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79226, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2859, + 3356 + ], + [ + 2870, + 3334 + ], + [ + 2894, + 3282 + ], + [ + 2939, + 3183 + ], + [ + 2859, + 3356 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170578, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2859, + 3357 + ], + [ + 2939, + 3183 + ], + [ + 2909, + 3161 + ], + [ + 2837, + 3316 + ], + [ + 2859, + 3357 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79269, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2837, + 3316 + ], + [ + 2909, + 3161 + ], + [ + 2877, + 3138 + ], + [ + 2806, + 3289 + ], + [ + 2837, + 3316 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79315, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3248, + 4160 + ], + [ + 3277, + 4100 + ], + [ + 3255, + 4081 + ], + [ + 2961, + 3945 + ], + [ + 2853, + 3928 + ], + [ + 2861, + 3905 + ], + [ + 2779, + 3932 + ], + [ + 2648, + 3949 + ], + [ + 2550, + 4160 + ], + [ + 3248, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81259, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2447, + 3868 + ], + [ + 2440, + 3882 + ], + [ + 2420, + 3894 + ], + [ + 2328, + 3903 + ], + [ + 2229, + 3912 + ], + [ + 2155, + 3997 + ], + [ + 2648, + 3949 + ], + [ + 2779, + 3932 + ], + [ + 2861, + 3905 + ], + [ + 2939, + 3859 + ], + [ + 2963, + 3857 + ], + [ + 3179, + 3955 + ], + [ + 3276, + 4098 + ], + [ + 3255, + 4081 + ], + [ + 3277, + 4100 + ], + [ + 3319, + 4160 + ], + [ + 3388, + 4160 + ], + [ + 3329, + 4061 + ], + [ + 3116, + 3777 + ], + [ + 3122, + 3771 + ], + [ + 3056, + 3695 + ], + [ + 3027, + 3692 + ], + [ + 2742, + 3438 + ], + [ + 2742, + 3417 + ], + [ + 2750, + 3399 + ], + [ + 2710, + 3367 + ], + [ + 2640, + 3447 + ], + [ + 2678, + 3473 + ], + [ + 2724, + 3492 + ], + [ + 2970, + 3711 + ], + [ + 2972, + 3727 + ], + [ + 2944, + 3737 + ], + [ + 2547, + 3553 + ], + [ + 2478, + 3630 + ], + [ + 2542, + 3660 + ], + [ + 2655, + 3713 + ], + [ + 2773, + 3767 + ], + [ + 2849, + 3803 + ], + [ + 2850, + 3827 + ], + [ + 2730, + 3864 + ], + [ + 2579, + 3879 + ], + [ + 2591, + 3854 + ], + [ + 2447, + 3868 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170250, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2944, + 3737 + ], + [ + 2972, + 3727 + ], + [ + 2970, + 3711 + ], + [ + 2724, + 3492 + ], + [ + 2678, + 3473 + ], + [ + 2588, + 3411 + ], + [ + 2455, + 3428 + ], + [ + 2319, + 3447 + ], + [ + 2944, + 3737 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76955, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2579, + 3879 + ], + [ + 2730, + 3864 + ], + [ + 2773, + 3767 + ], + [ + 2655, + 3713 + ], + [ + 2623, + 3786 + ], + [ + 2579, + 3879 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82665, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2730, + 3864 + ], + [ + 2850, + 3827 + ], + [ + 2849, + 3803 + ], + [ + 2773, + 3767 + ], + [ + 2730, + 3864 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82635, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2806, + 3289 + ], + [ + 2847, + 3201 + ], + [ + 2732, + 3148 + ], + [ + 2791, + 3180 + ], + [ + 2756, + 3250 + ], + [ + 2806, + 3289 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77566, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2640, + 3447 + ], + [ + 2710, + 3367 + ], + [ + 2647, + 3317 + ], + [ + 2600, + 3385 + ], + [ + 2578, + 3369 + ], + [ + 2563, + 3389 + ], + [ + 2588, + 3411 + ], + [ + 2640, + 3447 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171589, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2447, + 3868 + ], + [ + 2592, + 3854 + ], + [ + 2623, + 3786 + ], + [ + 2508, + 3734 + ], + [ + 2447, + 3868 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81717, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2623, + 3786 + ], + [ + 2655, + 3713 + ], + [ + 2542, + 3660 + ], + [ + 2508, + 3734 + ], + [ + 2623, + 3786 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82613, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2332, + 3705 + ], + [ + 2377, + 3612 + ], + [ + 2304, + 3578 + ], + [ + 2261, + 3664 + ], + [ + 2332, + 3705 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81891, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2229, + 3912 + ], + [ + 2328, + 3903 + ], + [ + 2461, + 3622 + ], + [ + 2389, + 3589 + ], + [ + 2377, + 3612 + ], + [ + 2229, + 3912 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77422, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2377, + 3612 + ], + [ + 2389, + 3589 + ], + [ + 2316, + 3556 + ], + [ + 2304, + 3578 + ], + [ + 2377, + 3612 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82537, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2328, + 3903 + ], + [ + 2420, + 3894 + ], + [ + 2440, + 3882 + ], + [ + 2542, + 3660 + ], + [ + 2461, + 3622 + ], + [ + 2328, + 3903 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81765, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2572, + 3366 + ], + [ + 2523, + 3331 + ], + [ + 2301, + 3204 + ], + [ + 2572, + 3366 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171593, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2319, + 3447 + ], + [ + 2588, + 3411 + ], + [ + 2563, + 3389 + ], + [ + 2578, + 3369 + ], + [ + 2301, + 3204 + ], + [ + 2259, + 3307 + ], + [ + 2360, + 3354 + ], + [ + 2319, + 3447 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67773, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2319, + 3447 + ], + [ + 2360, + 3354 + ], + [ + 2259, + 3307 + ], + [ + 2301, + 3204 + ], + [ + 2252, + 3174 + ], + [ + 2168, + 3377 + ], + [ + 2319, + 3447 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73119, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2168, + 3377 + ], + [ + 2252, + 3174 + ], + [ + 2173, + 3129 + ], + [ + 2085, + 3340 + ], + [ + 2168, + 3377 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72977, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2085, + 3340 + ], + [ + 2173, + 3129 + ], + [ + 2121, + 3099 + ], + [ + 2031, + 3315 + ], + [ + 2085, + 3340 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72926, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2079, + 3927 + ], + [ + 2132, + 3921 + ], + [ + 2179, + 3828 + ], + [ + 2139, + 3800 + ], + [ + 2079, + 3927 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76298, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2178, + 3827 + ], + [ + 2316, + 3556 + ], + [ + 2106, + 3459 + ], + [ + 1997, + 3693 + ], + [ + 2178, + 3827 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82161, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2261, + 3664 + ], + [ + 2180, + 3822 + ], + [ + 2182, + 3823 + ], + [ + 2261, + 3664 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171584, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2132, + 3921 + ], + [ + 2229, + 3912 + ], + [ + 2334, + 3700 + ], + [ + 2261, + 3664 + ], + [ + 2132, + 3921 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81808, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3542, + 3261 + ], + [ + 3539, + 3161 + ], + [ + 3504, + 3163 + ], + [ + 3507, + 3249 + ], + [ + 3511, + 3250 + ], + [ + 3542, + 3261 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115967, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3504, + 3163 + ], + [ + 3539, + 3161 + ], + [ + 3536, + 3070 + ], + [ + 3501, + 3071 + ], + [ + 3504, + 3163 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115966, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3507, + 3249 + ], + [ + 3501, + 3071 + ], + [ + 3465, + 3072 + ], + [ + 3470, + 3235 + ], + [ + 3485, + 3241 + ], + [ + 3507, + 3249 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115968, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3485, + 3241 + ], + [ + 3470, + 3235 + ], + [ + 3465, + 3234 + ], + [ + 3485, + 3241 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170297, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3470, + 3235 + ], + [ + 3465, + 3072 + ], + [ + 3425, + 3073 + ], + [ + 3428, + 3220 + ], + [ + 3465, + 3234 + ], + [ + 3470, + 3235 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115969, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3398, + 3210 + ], + [ + 3386, + 3205 + ], + [ + 3367, + 3199 + ], + [ + 3398, + 3210 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170285, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3428, + 3220 + ], + [ + 3425, + 3073 + ], + [ + 3385, + 3074 + ], + [ + 3386, + 3205 + ], + [ + 3421, + 3218 + ], + [ + 3428, + 3220 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115970, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3386, + 3205 + ], + [ + 3385, + 3074 + ], + [ + 3358, + 3075 + ], + [ + 3361, + 3196 + ], + [ + 3367, + 3199 + ], + [ + 3386, + 3205 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115982, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3367, + 3199 + ], + [ + 3361, + 3196 + ], + [ + 3337, + 3188 + ], + [ + 3367, + 3199 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170581, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3361, + 3196 + ], + [ + 3358, + 3075 + ], + [ + 3333, + 3075 + ], + [ + 3337, + 3188 + ], + [ + 3361, + 3196 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115399, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3217, + 3267 + ], + [ + 3280, + 3168 + ], + [ + 3337, + 3188 + ], + [ + 3333, + 3075 + ], + [ + 3200, + 3079 + ], + [ + 3195, + 3159 + ], + [ + 3153, + 3228 + ], + [ + 3217, + 3267 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115371, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3153, + 3228 + ], + [ + 3195, + 3159 + ], + [ + 3200, + 3079 + ], + [ + 3160, + 3073 + ], + [ + 3148, + 3140 + ], + [ + 3111, + 3202 + ], + [ + 3153, + 3228 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115401, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3111, + 3202 + ], + [ + 3148, + 3140 + ], + [ + 3160, + 3073 + ], + [ + 3124, + 3068 + ], + [ + 3094, + 3139 + ], + [ + 3071, + 3178 + ], + [ + 3111, + 3202 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115372, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3071, + 3178 + ], + [ + 3094, + 3139 + ], + [ + 3067, + 3129 + ], + [ + 3046, + 3163 + ], + [ + 3071, + 3178 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115402, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3015, + 3144 + ], + [ + 3034, + 3116 + ], + [ + 3094, + 3139 + ], + [ + 3124, + 3068 + ], + [ + 3065, + 3033 + ], + [ + 2992, + 3129 + ], + [ + 3015, + 3144 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115374, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3028, + 3082 + ], + [ + 3065, + 3033 + ], + [ + 3047, + 3020 + ], + [ + 3011, + 3069 + ], + [ + 3028, + 3082 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115375, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3046, + 3163 + ], + [ + 3067, + 3129 + ], + [ + 3034, + 3116 + ], + [ + 3015, + 3144 + ], + [ + 3046, + 3163 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115373, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3011, + 3069 + ], + [ + 3047, + 3020 + ], + [ + 3030, + 3008 + ], + [ + 2994, + 3055 + ], + [ + 3011, + 3069 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115376, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2992, + 3129 + ], + [ + 3028, + 3082 + ], + [ + 2994, + 3055 + ], + [ + 2957, + 3103 + ], + [ + 2992, + 3129 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115377, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2957, + 3103 + ], + [ + 2994, + 3055 + ], + [ + 2937, + 3012 + ], + [ + 2902, + 3059 + ], + [ + 2957, + 3103 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115390, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2894, + 3282 + ], + [ + 2965, + 3279 + ], + [ + 2961, + 3199 + ], + [ + 2939, + 3183 + ], + [ + 2894, + 3282 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79179, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2838, + 3223 + ], + [ + 2877, + 3138 + ], + [ + 2847, + 3201 + ], + [ + 2838, + 3223 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171590, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2847, + 3201 + ], + [ + 2877, + 3138 + ], + [ + 2838, + 3105 + ], + [ + 2804, + 3181 + ], + [ + 2847, + 3201 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80013, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2804, + 3181 + ], + [ + 2838, + 3105 + ], + [ + 2805, + 3076 + ], + [ + 2766, + 3163 + ], + [ + 2804, + 3181 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80051, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2766, + 3163 + ], + [ + 2805, + 3076 + ], + [ + 2778, + 3050 + ], + [ + 2732, + 3148 + ], + [ + 2766, + 3163 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80093, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2756, + 3250 + ], + [ + 2791, + 3180 + ], + [ + 2730, + 3152 + ], + [ + 2705, + 3209 + ], + [ + 2756, + 3250 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77667, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2530, + 1544 + ], + [ + 2542, + 1490 + ], + [ + 2580, + 1443 + ], + [ + 2699, + 1397 + ], + [ + 2675, + 1388 + ], + [ + 2589, + 1401 + ], + [ + 2532, + 1428 + ], + [ + 2525, + 1440 + ], + [ + 2526, + 1461 + ], + [ + 2512, + 1465 + ], + [ + 2487, + 1514 + ], + [ + 2530, + 1544 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116098, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2712, + 1989 + ], + [ + 2759, + 1969 + ], + [ + 2670, + 1706 + ], + [ + 2586, + 1734 + ], + [ + 2580, + 1716 + ], + [ + 2539, + 1667 + ], + [ + 2521, + 1607 + ], + [ + 2464, + 1623 + ], + [ + 2482, + 1678 + ], + [ + 2575, + 1764 + ], + [ + 2633, + 1850 + ], + [ + 2656, + 1902 + ], + [ + 2673, + 1986 + ], + [ + 2712, + 1989 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116033, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2443, + 1406 + ], + [ + 2664, + 1388 + ], + [ + 2739, + 1365 + ], + [ + 2823, + 1322 + ], + [ + 2797, + 1291 + ], + [ + 2696, + 1340 + ], + [ + 2486, + 1380 + ], + [ + 2450, + 1393 + ], + [ + 2443, + 1406 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116032, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2466, + 1364 + ], + [ + 2623, + 1353 + ], + [ + 2696, + 1340 + ], + [ + 2567, + 1185 + ], + [ + 2466, + 1364 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116019, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2546, + 828 + ], + [ + 2623, + 747 + ], + [ + 2573, + 698 + ], + [ + 2502, + 776 + ], + [ + 2546, + 828 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116690, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2496, + 604 + ], + [ + 2510, + 584 + ], + [ + 2432, + 531 + ], + [ + 2421, + 552 + ], + [ + 2496, + 604 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33879, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2500, + 778 + ], + [ + 2538, + 736 + ], + [ + 2482, + 698 + ], + [ + 2458, + 734 + ], + [ + 2500, + 778 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 31809, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2443, + 1406 + ], + [ + 2477, + 1405 + ], + [ + 2585, + 1394 + ], + [ + 2443, + 1406 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221333, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2456, + 1625 + ], + [ + 2521, + 1607 + ], + [ + 2532, + 1567 + ], + [ + 2530, + 1544 + ], + [ + 2487, + 1514 + ], + [ + 2512, + 1465 + ], + [ + 2526, + 1461 + ], + [ + 2525, + 1440 + ], + [ + 2532, + 1428 + ], + [ + 2589, + 1401 + ], + [ + 2670, + 1386 + ], + [ + 2477, + 1405 + ], + [ + 2431, + 1426 + ], + [ + 2411, + 1462 + ], + [ + 2363, + 1487 + ], + [ + 2349, + 1515 + ], + [ + 2350, + 1556 + ], + [ + 2359, + 1582 + ], + [ + 2380, + 1606 + ], + [ + 2408, + 1622 + ], + [ + 2456, + 1625 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116030, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2564, + 1752 + ], + [ + 2482, + 1678 + ], + [ + 2498, + 1725 + ], + [ + 2517, + 1719 + ], + [ + 2564, + 1752 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116138, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2533, + 1571 + ], + [ + 2531, + 1540 + ], + [ + 2530, + 1544 + ], + [ + 2532, + 1567 + ], + [ + 2533, + 1571 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221129, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2450, + 1393 + ], + [ + 2623, + 1353 + ], + [ + 2466, + 1364 + ], + [ + 2450, + 1393 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116090, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2542, + 1666 + ], + [ + 2561, + 1659 + ], + [ + 2532, + 1567 + ], + [ + 2521, + 1599 + ], + [ + 2524, + 1629 + ], + [ + 2542, + 1666 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116112, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2550, + 2267 + ], + [ + 2560, + 2221 + ], + [ + 2579, + 2188 + ], + [ + 2538, + 2146 + ], + [ + 2503, + 2174 + ], + [ + 2509, + 2181 + ], + [ + 2543, + 2218 + ], + [ + 2550, + 2267 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116147, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2539, + 2237 + ], + [ + 2546, + 2228 + ], + [ + 2534, + 2203 + ], + [ + 2509, + 2181 + ], + [ + 2539, + 2237 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116146, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2593, + 2825 + ], + [ + 2726, + 2581 + ], + [ + 2438, + 2485 + ], + [ + 2342, + 2721 + ], + [ + 2482, + 2773 + ], + [ + 2593, + 2825 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116039, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2678, + 3181 + ], + [ + 2710, + 3167 + ], + [ + 2767, + 3042 + ], + [ + 2681, + 2970 + ], + [ + 2566, + 2899 + ], + [ + 2257, + 2766 + ], + [ + 2198, + 2896 + ], + [ + 2196, + 2903 + ], + [ + 2216, + 2917 + ], + [ + 2391, + 3029 + ], + [ + 2518, + 3054 + ], + [ + 2678, + 3181 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65918, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2342, + 2721 + ], + [ + 2438, + 2485 + ], + [ + 2726, + 2581 + ], + [ + 2733, + 2567 + ], + [ + 2680, + 2534 + ], + [ + 2642, + 2498 + ], + [ + 2597, + 2431 + ], + [ + 2558, + 2338 + ], + [ + 2550, + 2272 + ], + [ + 2539, + 2237 + ], + [ + 2220, + 2626 + ], + [ + 2256, + 2665 + ], + [ + 2342, + 2721 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116006, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2694, + 3249 + ], + [ + 2711, + 3226 + ], + [ + 2709, + 3212 + ], + [ + 2705, + 3209 + ], + [ + 2730, + 3152 + ], + [ + 2791, + 3180 + ], + [ + 2732, + 3148 + ], + [ + 2778, + 3050 + ], + [ + 2805, + 3076 + ], + [ + 2838, + 3105 + ], + [ + 2877, + 3138 + ], + [ + 2898, + 3154 + ], + [ + 2949, + 3096 + ], + [ + 2902, + 3059 + ], + [ + 2833, + 2997 + ], + [ + 2798, + 2965 + ], + [ + 2760, + 2935 + ], + [ + 2731, + 2913 + ], + [ + 2731, + 2887 + ], + [ + 2772, + 2870 + ], + [ + 2812, + 2866 + ], + [ + 2862, + 2881 + ], + [ + 2900, + 2909 + ], + [ + 2974, + 2964 + ], + [ + 3028, + 3006 + ], + [ + 3068, + 2961 + ], + [ + 3028, + 2930 + ], + [ + 2994, + 2904 + ], + [ + 2965, + 2881 + ], + [ + 2957, + 2874 + ], + [ + 2889, + 2825 + ], + [ + 2832, + 2807 + ], + [ + 2766, + 2809 + ], + [ + 2697, + 2836 + ], + [ + 2663, + 2866 + ], + [ + 2593, + 2825 + ], + [ + 2565, + 2812 + ], + [ + 2547, + 2842 + ], + [ + 2407, + 2784 + ], + [ + 2317, + 2744 + ], + [ + 2269, + 2717 + ], + [ + 2167, + 2636 + ], + [ + 1774, + 2298 + ], + [ + 1792, + 2317 + ], + [ + 1983, + 2524 + ], + [ + 2186, + 2749 + ], + [ + 2249, + 2785 + ], + [ + 2257, + 2766 + ], + [ + 2566, + 2899 + ], + [ + 2681, + 2970 + ], + [ + 2767, + 3042 + ], + [ + 2710, + 3167 + ], + [ + 2678, + 3181 + ], + [ + 2518, + 3054 + ], + [ + 2664, + 3173 + ], + [ + 2639, + 3208 + ], + [ + 2694, + 3249 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171454, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2579, + 2188 + ], + [ + 2640, + 2102 + ], + [ + 2646, + 2042 + ], + [ + 2666, + 2035 + ], + [ + 2671, + 1986 + ], + [ + 2633, + 1850 + ], + [ + 2564, + 1752 + ], + [ + 2517, + 1719 + ], + [ + 2498, + 1725 + ], + [ + 2482, + 1678 + ], + [ + 2466, + 1666 + ], + [ + 2347, + 1705 + ], + [ + 2334, + 1691 + ], + [ + 2305, + 1598 + ], + [ + 2200, + 1634 + ], + [ + 2171, + 1702 + ], + [ + 2148, + 1785 + ], + [ + 2149, + 1826 + ], + [ + 2159, + 1863 + ], + [ + 2184, + 1904 + ], + [ + 2220, + 1940 + ], + [ + 2205, + 1959 + ], + [ + 2241, + 2001 + ], + [ + 2371, + 2118 + ], + [ + 2509, + 2181 + ], + [ + 2503, + 2174 + ], + [ + 2538, + 2146 + ], + [ + 2579, + 2188 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116004, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2326, + 1506 + ], + [ + 2363, + 1487 + ], + [ + 2399, + 1446 + ], + [ + 2431, + 1426 + ], + [ + 2443, + 1406 + ], + [ + 2412, + 1411 + ], + [ + 2372, + 1438 + ], + [ + 2339, + 1474 + ], + [ + 2326, + 1506 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116093, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2377, + 1379 + ], + [ + 2401, + 1400 + ], + [ + 2412, + 1400 + ], + [ + 2377, + 1379 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221324, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2363, + 1487 + ], + [ + 2411, + 1462 + ], + [ + 2431, + 1426 + ], + [ + 2399, + 1446 + ], + [ + 2363, + 1487 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116089, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2347, + 1705 + ], + [ + 2466, + 1666 + ], + [ + 2482, + 1678 + ], + [ + 2464, + 1623 + ], + [ + 2408, + 1622 + ], + [ + 2380, + 1606 + ], + [ + 2359, + 1582 + ], + [ + 2341, + 1593 + ], + [ + 2337, + 1587 + ], + [ + 2305, + 1598 + ], + [ + 2334, + 1691 + ], + [ + 2347, + 1705 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116092, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2418, + 1388 + ], + [ + 2425, + 1387 + ], + [ + 2389, + 1376 + ], + [ + 2418, + 1388 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221342, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2417, + 1404 + ], + [ + 2450, + 1393 + ], + [ + 2455, + 1384 + ], + [ + 2418, + 1388 + ], + [ + 2389, + 1376 + ], + [ + 2377, + 1379 + ], + [ + 2417, + 1404 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116091, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2428, + 1388 + ], + [ + 2455, + 1384 + ], + [ + 2466, + 1364 + ], + [ + 2389, + 1376 + ], + [ + 2428, + 1388 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116088, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2412, + 1411 + ], + [ + 2443, + 1406 + ], + [ + 2450, + 1393 + ], + [ + 2412, + 1411 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116099, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2430, + 1402 + ], + [ + 2450, + 1393 + ], + [ + 2424, + 1401 + ], + [ + 2430, + 1402 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221330, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2431, + 1426 + ], + [ + 2477, + 1405 + ], + [ + 2443, + 1406 + ], + [ + 2431, + 1426 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116100, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2574, + 1024 + ], + [ + 2430, + 849 + ], + [ + 2331, + 881 + ], + [ + 2574, + 1024 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116018, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2389, + 1376 + ], + [ + 2466, + 1364 + ], + [ + 2567, + 1185 + ], + [ + 2532, + 1143 + ], + [ + 2615, + 1073 + ], + [ + 2574, + 1024 + ], + [ + 2331, + 881 + ], + [ + 2249, + 967 + ], + [ + 2269, + 1034 + ], + [ + 2284, + 1053 + ], + [ + 2310, + 1064 + ], + [ + 2353, + 1054 + ], + [ + 2373, + 1064 + ], + [ + 2364, + 1082 + ], + [ + 2317, + 1108 + ], + [ + 2307, + 1148 + ], + [ + 2338, + 1243 + ], + [ + 2373, + 1260 + ], + [ + 2355, + 1296 + ], + [ + 2375, + 1357 + ], + [ + 2389, + 1376 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116008, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2428, + 705 + ], + [ + 2433, + 698 + ], + [ + 2405, + 666 + ], + [ + 2398, + 677 + ], + [ + 2428, + 705 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34509, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2405, + 666 + ], + [ + 2460, + 579 + ], + [ + 2421, + 552 + ], + [ + 2378, + 634 + ], + [ + 2405, + 666 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 35581, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2433, + 698 + ], + [ + 2496, + 604 + ], + [ + 2460, + 579 + ], + [ + 2405, + 666 + ], + [ + 2433, + 698 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34964, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2398, + 677 + ], + [ + 2405, + 666 + ], + [ + 2378, + 634 + ], + [ + 2370, + 649 + ], + [ + 2398, + 677 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 30316, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2370, + 649 + ], + [ + 2443, + 510 + ], + [ + 2395, + 488 + ], + [ + 2370, + 539 + ], + [ + 2331, + 620 + ], + [ + 2370, + 649 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 35486, + "type": "Feature" + }, + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 2017, + 1169 + ], + [ + 2022, + 1172 + ], + [ + 2113, + 989 + ], + [ + 2207, + 806 + ], + [ + 2279, + 673 + ], + [ + 2339, + 743 + ], + [ + 2393, + 805 + ], + [ + 2430, + 849 + ], + [ + 2574, + 1024 + ], + [ + 2615, + 1073 + ], + [ + 2624, + 1083 + ], + [ + 2797, + 1291 + ], + [ + 2823, + 1322 + ], + [ + 2845, + 1349 + ], + [ + 2886, + 1335 + ], + [ + 2968, + 1433 + ], + [ + 3036, + 1500 + ], + [ + 2505, + 865 + ], + [ + 2460, + 812 + ], + [ + 2360, + 684 + ], + [ + 2331, + 656 + ], + [ + 2298, + 632 + ], + [ + 2274, + 651 + ], + [ + 2281, + 654 + ], + [ + 2222, + 764 + ], + [ + 2188, + 829 + ], + [ + 2152, + 899 + ], + [ + 2151, + 898 + ], + [ + 2108, + 983 + ], + [ + 2097, + 1006 + ], + [ + 2067, + 1067 + ], + [ + 2017, + 1169 + ] + ] + ], + [ + [ + [ + 1968, + 1142 + ], + [ + 2048, + 1057 + ], + [ + 1966, + 1141 + ], + [ + 1968, + 1142 + ] + ] + ], + [ + [ + [ + 1966, + 1141 + ], + [ + 1913, + 1111 + ], + [ + 1866, + 1085 + ], + [ + 1966, + 1141 + ] + ] + ], + [ + [ + [ + 1839, + 1070 + ], + [ + 1809, + 1053 + ], + [ + 1809, + 1054 + ], + [ + 1839, + 1070 + ] + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221204, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2331, + 881 + ], + [ + 2430, + 849 + ], + [ + 2393, + 805 + ], + [ + 2327, + 879 + ], + [ + 2331, + 881 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116045, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2377, + 1379 + ], + [ + 2389, + 1376 + ], + [ + 2375, + 1357 + ], + [ + 2355, + 1296 + ], + [ + 2373, + 1260 + ], + [ + 2338, + 1243 + ], + [ + 2312, + 1164 + ], + [ + 2307, + 1165 + ], + [ + 2377, + 1379 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116049, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2327, + 879 + ], + [ + 2393, + 805 + ], + [ + 2339, + 743 + ], + [ + 2255, + 835 + ], + [ + 2327, + 879 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116041, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2331, + 620 + ], + [ + 2344, + 593 + ], + [ + 2282, + 549 + ], + [ + 2267, + 585 + ], + [ + 2331, + 620 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 31024, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2307, + 1148 + ], + [ + 2317, + 1108 + ], + [ + 2364, + 1082 + ], + [ + 2373, + 1064 + ], + [ + 2353, + 1054 + ], + [ + 2299, + 1061 + ], + [ + 2269, + 1034 + ], + [ + 2307, + 1148 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116063, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2346, + 1393 + ], + [ + 2377, + 1379 + ], + [ + 2307, + 1165 + ], + [ + 2312, + 1164 + ], + [ + 2307, + 1148 + ], + [ + 2294, + 1110 + ], + [ + 2238, + 1130 + ], + [ + 2262, + 1139 + ], + [ + 2281, + 1165 + ], + [ + 2309, + 1251 + ], + [ + 2291, + 1287 + ], + [ + 2326, + 1305 + ], + [ + 2346, + 1366 + ], + [ + 2346, + 1393 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116065, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2295, + 1057 + ], + [ + 2299, + 1061 + ], + [ + 2303, + 1061 + ], + [ + 2295, + 1057 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221217, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2309, + 1251 + ], + [ + 2281, + 1165 + ], + [ + 2279, + 1163 + ], + [ + 2309, + 1251 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221230, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2249, + 967 + ], + [ + 2331, + 881 + ], + [ + 2327, + 879 + ], + [ + 2322, + 884 + ], + [ + 2249, + 967 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221219, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2249, + 967 + ], + [ + 2322, + 884 + ], + [ + 2244, + 910 + ], + [ + 2255, + 942 + ], + [ + 2247, + 958 + ], + [ + 2249, + 967 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116046, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2269, + 1465 + ], + [ + 2297, + 1429 + ], + [ + 2291, + 1434 + ], + [ + 2269, + 1465 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221313, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2371, + 2118 + ], + [ + 2257, + 2016 + ], + [ + 2282, + 2042 + ], + [ + 2371, + 2118 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221252, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2311, + 1551 + ], + [ + 2318, + 1544 + ], + [ + 2319, + 1540 + ], + [ + 2311, + 1551 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221148, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2328, + 1501 + ], + [ + 2334, + 1486 + ], + [ + 2330, + 1493 + ], + [ + 2328, + 1501 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221299, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2305, + 1598 + ], + [ + 2337, + 1587 + ], + [ + 2341, + 1593 + ], + [ + 2359, + 1582 + ], + [ + 2348, + 1535 + ], + [ + 2352, + 1506 + ], + [ + 2363, + 1487 + ], + [ + 2326, + 1506 + ], + [ + 2318, + 1544 + ], + [ + 2295, + 1568 + ], + [ + 2305, + 1598 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116095, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2346, + 1378 + ], + [ + 2346, + 1366 + ], + [ + 2326, + 1305 + ], + [ + 2346, + 1378 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221241, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2350, + 1544 + ], + [ + 2349, + 1524 + ], + [ + 2348, + 1535 + ], + [ + 2350, + 1544 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221127, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2330, + 1493 + ], + [ + 2356, + 1452 + ], + [ + 2430, + 1402 + ], + [ + 2401, + 1400 + ], + [ + 2377, + 1379 + ], + [ + 2346, + 1393 + ], + [ + 2303, + 1422 + ], + [ + 2269, + 1465 + ], + [ + 2330, + 1493 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116097, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2351, + 1511 + ], + [ + 2363, + 1487 + ], + [ + 2352, + 1506 + ], + [ + 2351, + 1511 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221301, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2349, + 1463 + ], + [ + 2364, + 1447 + ], + [ + 2356, + 1452 + ], + [ + 2349, + 1463 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221306, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2220, + 2626 + ], + [ + 2539, + 2237 + ], + [ + 2509, + 2181 + ], + [ + 2371, + 2118 + ], + [ + 2282, + 2042 + ], + [ + 2215, + 1971 + ], + [ + 1894, + 2273 + ], + [ + 2220, + 2626 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116005, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2200, + 1634 + ], + [ + 2305, + 1598 + ], + [ + 2295, + 1568 + ], + [ + 2282, + 1572 + ], + [ + 2219, + 1594 + ], + [ + 2200, + 1634 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116094, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2219, + 1594 + ], + [ + 2282, + 1572 + ], + [ + 2295, + 1568 + ], + [ + 2299, + 1564 + ], + [ + 2219, + 1594 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221146, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2219, + 1594 + ], + [ + 2304, + 1562 + ], + [ + 2320, + 1538 + ], + [ + 2330, + 1493 + ], + [ + 2269, + 1465 + ], + [ + 2241, + 1497 + ], + [ + 2255, + 1543 + ], + [ + 2246, + 1546 + ], + [ + 2219, + 1594 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116096, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2269, + 1034 + ], + [ + 2263, + 1013 + ], + [ + 2260, + 1008 + ], + [ + 2269, + 1034 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221228, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2255, + 835 + ], + [ + 2339, + 743 + ], + [ + 2279, + 673 + ], + [ + 2207, + 806 + ], + [ + 2255, + 835 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116042, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2200, + 925 + ], + [ + 2322, + 884 + ], + [ + 2327, + 879 + ], + [ + 2255, + 835 + ], + [ + 2192, + 903 + ], + [ + 2200, + 925 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116047, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2266, + 1120 + ], + [ + 2294, + 1110 + ], + [ + 2260, + 1008 + ], + [ + 2241, + 998 + ], + [ + 2231, + 1017 + ], + [ + 2266, + 1120 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116064, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2238, + 1073 + ], + [ + 2240, + 1070 + ], + [ + 2240, + 1064 + ], + [ + 2238, + 1073 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221215, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2231, + 1017 + ], + [ + 2239, + 1046 + ], + [ + 2239, + 1041 + ], + [ + 2231, + 1017 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221227, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2271, + 1031 + ], + [ + 2249, + 967 + ], + [ + 2224, + 995 + ], + [ + 2231, + 1017 + ], + [ + 2241, + 998 + ], + [ + 2260, + 1008 + ], + [ + 2271, + 1031 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116062, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2267, + 585 + ], + [ + 2282, + 548 + ], + [ + 2263, + 537 + ], + [ + 2248, + 575 + ], + [ + 2267, + 585 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 31508, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2222, + 764 + ], + [ + 2281, + 654 + ], + [ + 2223, + 630 + ], + [ + 2170, + 738 + ], + [ + 2222, + 764 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 589, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2224, + 995 + ], + [ + 2249, + 967 + ], + [ + 2247, + 958 + ], + [ + 2255, + 942 + ], + [ + 2244, + 910 + ], + [ + 2200, + 925 + ], + [ + 2224, + 995 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116050, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2121, + 1165 + ], + [ + 2238, + 1130 + ], + [ + 2266, + 1120 + ], + [ + 2121, + 1165 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221206, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2161, + 937 + ], + [ + 2200, + 925 + ], + [ + 2192, + 903 + ], + [ + 2161, + 937 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116048, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2113, + 989 + ], + [ + 2255, + 835 + ], + [ + 2207, + 806 + ], + [ + 2113, + 989 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116040, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2188, + 829 + ], + [ + 2222, + 764 + ], + [ + 2170, + 738 + ], + [ + 2137, + 804 + ], + [ + 2188, + 829 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7813, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2269, + 1465 + ], + [ + 2291, + 1434 + ], + [ + 2346, + 1393 + ], + [ + 2348, + 1384 + ], + [ + 2326, + 1305 + ], + [ + 2291, + 1287 + ], + [ + 2309, + 1251 + ], + [ + 2278, + 1159 + ], + [ + 2262, + 1139 + ], + [ + 2238, + 1130 + ], + [ + 2121, + 1165 + ], + [ + 1963, + 1330 + ], + [ + 2269, + 1465 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116010, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2152, + 899 + ], + [ + 2188, + 829 + ], + [ + 2137, + 804 + ], + [ + 2103, + 876 + ], + [ + 2152, + 899 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7548, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2151, + 776 + ], + [ + 2223, + 630 + ], + [ + 2185, + 615 + ], + [ + 2117, + 761 + ], + [ + 2151, + 776 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 738, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2117, + 761 + ], + [ + 2185, + 615 + ], + [ + 2139, + 597 + ], + [ + 2073, + 741 + ], + [ + 2117, + 761 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 560, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2017, + 1228 + ], + [ + 2105, + 1140 + ], + [ + 2226, + 1093 + ], + [ + 2237, + 1076 + ], + [ + 2241, + 1054 + ], + [ + 2224, + 995 + ], + [ + 2017, + 1228 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116043, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2108, + 983 + ], + [ + 2151, + 898 + ], + [ + 2103, + 876 + ], + [ + 2061, + 961 + ], + [ + 2108, + 983 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7125, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2066, + 1647 + ], + [ + 2219, + 1594 + ], + [ + 2246, + 1546 + ], + [ + 2255, + 1543 + ], + [ + 2241, + 1497 + ], + [ + 2269, + 1465 + ], + [ + 1963, + 1330 + ], + [ + 1938, + 1362 + ], + [ + 1938, + 1400 + ], + [ + 2011, + 1619 + ], + [ + 2035, + 1643 + ], + [ + 2066, + 1647 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116012, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2109, + 1989 + ], + [ + 2136, + 1963 + ], + [ + 2117, + 1942 + ], + [ + 2050, + 1735 + ], + [ + 2049, + 1714 + ], + [ + 2059, + 1691 + ], + [ + 2077, + 1677 + ], + [ + 2200, + 1634 + ], + [ + 2219, + 1594 + ], + [ + 1990, + 1674 + ], + [ + 2081, + 1939 + ], + [ + 2078, + 1956 + ], + [ + 2109, + 1989 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116009, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2136, + 1963 + ], + [ + 2112, + 1927 + ], + [ + 2117, + 1942 + ], + [ + 2136, + 1963 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221268, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2136, + 1963 + ], + [ + 2149, + 1939 + ], + [ + 2112, + 1927 + ], + [ + 2136, + 1963 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116137, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2137, + 1961 + ], + [ + 2143, + 1955 + ], + [ + 2149, + 1939 + ], + [ + 2137, + 1961 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221266, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2144, + 2038 + ], + [ + 2215, + 1971 + ], + [ + 2205, + 1959 + ], + [ + 2220, + 1940 + ], + [ + 2167, + 1879 + ], + [ + 2147, + 1816 + ], + [ + 2148, + 1785 + ], + [ + 2163, + 1727 + ], + [ + 2200, + 1634 + ], + [ + 2077, + 1677 + ], + [ + 2059, + 1691 + ], + [ + 2049, + 1714 + ], + [ + 2050, + 1735 + ], + [ + 2112, + 1927 + ], + [ + 2149, + 1939 + ], + [ + 2143, + 1955 + ], + [ + 2104, + 1995 + ], + [ + 2144, + 2038 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116014, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2149, + 1820 + ], + [ + 2148, + 1785 + ], + [ + 2147, + 1816 + ], + [ + 2149, + 1820 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221174, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2148, + 1785 + ], + [ + 2168, + 1716 + ], + [ + 2163, + 1727 + ], + [ + 2148, + 1785 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221172, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2174, + 1887 + ], + [ + 2165, + 1872 + ], + [ + 2167, + 1879 + ], + [ + 2174, + 1887 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221189, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2196, + 309 + ], + [ + 2219, + 237 + ], + [ + 2165, + 221 + ], + [ + 2159, + 212 + ], + [ + 2093, + 203 + ], + [ + 2085, + 274 + ], + [ + 2196, + 309 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 32673, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2182, + 353 + ], + [ + 2196, + 309 + ], + [ + 2085, + 274 + ], + [ + 2079, + 321 + ], + [ + 2182, + 353 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33408, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2638, + 397 + ], + [ + 2683, + 331 + ], + [ + 2552, + 244 + ], + [ + 2546, + 257 + ], + [ + 2511, + 245 + ], + [ + 2508, + 253 + ], + [ + 2488, + 294 + ], + [ + 2638, + 397 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 29596, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2116, + 397 + ], + [ + 2134, + 338 + ], + [ + 2079, + 321 + ], + [ + 2073, + 384 + ], + [ + 2116, + 397 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34407, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2608, + 441 + ], + [ + 2638, + 397 + ], + [ + 2539, + 328 + ], + [ + 2512, + 378 + ], + [ + 2608, + 441 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33720, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2590, + 467 + ], + [ + 2608, + 441 + ], + [ + 2512, + 378 + ], + [ + 2499, + 403 + ], + [ + 2590, + 467 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33863, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2572, + 493 + ], + [ + 2590, + 467 + ], + [ + 2499, + 403 + ], + [ + 2485, + 429 + ], + [ + 2572, + 493 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34293, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2549, + 527 + ], + [ + 2572, + 493 + ], + [ + 2485, + 429 + ], + [ + 2464, + 470 + ], + [ + 2549, + 527 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34458, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2163, + 538 + ], + [ + 2195, + 435 + ], + [ + 2112, + 409 + ], + [ + 2081, + 508 + ], + [ + 2163, + 538 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34802, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2523, + 564 + ], + [ + 2549, + 527 + ], + [ + 2464, + 470 + ], + [ + 2443, + 510 + ], + [ + 2523, + 564 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34330, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2510, + 584 + ], + [ + 2523, + 564 + ], + [ + 2443, + 510 + ], + [ + 2432, + 531 + ], + [ + 2510, + 584 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34258, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3058, + 2671 + ], + [ + 3037, + 2653 + ], + [ + 3043, + 2661 + ], + [ + 3058, + 2671 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171579, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3038, + 2791 + ], + [ + 3051, + 2758 + ], + [ + 3006, + 2749 + ], + [ + 2995, + 2775 + ], + [ + 3038, + 2791 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116630, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3027, + 2819 + ], + [ + 3038, + 2791 + ], + [ + 2999, + 2777 + ], + [ + 2988, + 2807 + ], + [ + 2993, + 2808 + ], + [ + 3027, + 2819 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116602, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2994, + 3055 + ], + [ + 3030, + 3008 + ], + [ + 2974, + 2964 + ], + [ + 2937, + 3012 + ], + [ + 2994, + 3055 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115378, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3011, + 2860 + ], + [ + 3027, + 2819 + ], + [ + 2993, + 2808 + ], + [ + 2978, + 2847 + ], + [ + 3011, + 2860 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116597, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2998, + 2769 + ], + [ + 3006, + 2749 + ], + [ + 3030, + 2685 + ], + [ + 2998, + 2769 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171577, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2994, + 2904 + ], + [ + 3011, + 2860 + ], + [ + 2978, + 2847 + ], + [ + 2965, + 2881 + ], + [ + 2994, + 2904 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116604, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2965, + 2881 + ], + [ + 2993, + 2808 + ], + [ + 2988, + 2807 + ], + [ + 2999, + 2777 + ], + [ + 2995, + 2775 + ], + [ + 2957, + 2874 + ], + [ + 2965, + 2881 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116632, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2974, + 2538 + ], + [ + 2971, + 2481 + ], + [ + 2970, + 2486 + ], + [ + 2974, + 2538 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171526, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2967, + 2549 + ], + [ + 2942, + 2552 + ], + [ + 2965, + 2552 + ], + [ + 2967, + 2549 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171519, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3002, + 683 + ], + [ + 3025, + 660 + ], + [ + 2943, + 579 + ], + [ + 2938, + 585 + ], + [ + 2930, + 578 + ], + [ + 2914, + 595 + ], + [ + 3002, + 683 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116713, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3025, + 660 + ], + [ + 3049, + 637 + ], + [ + 2967, + 556 + ], + [ + 2943, + 579 + ], + [ + 3025, + 660 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116714, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2960, + 725 + ], + [ + 3002, + 683 + ], + [ + 2914, + 595 + ], + [ + 2872, + 636 + ], + [ + 2960, + 725 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116712, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2928, + 580 + ], + [ + 2930, + 578 + ], + [ + 2848, + 512 + ], + [ + 2928, + 580 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171508, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2910, + 775 + ], + [ + 2932, + 753 + ], + [ + 2843, + 665 + ], + [ + 2821, + 687 + ], + [ + 2910, + 775 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116710, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2886, + 622 + ], + [ + 2928, + 580 + ], + [ + 2848, + 512 + ], + [ + 2811, + 551 + ], + [ + 2886, + 622 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116692, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2932, + 753 + ], + [ + 2960, + 725 + ], + [ + 2872, + 636 + ], + [ + 2843, + 665 + ], + [ + 2932, + 753 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116711, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2866, + 642 + ], + [ + 2886, + 622 + ], + [ + 2826, + 565 + ], + [ + 2798, + 579 + ], + [ + 2866, + 642 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116691, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2887, + 797 + ], + [ + 2910, + 775 + ], + [ + 2821, + 687 + ], + [ + 2799, + 709 + ], + [ + 2887, + 797 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116709, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2858, + 825 + ], + [ + 2887, + 797 + ], + [ + 2799, + 709 + ], + [ + 2770, + 738 + ], + [ + 2858, + 825 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116680, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3004, + 2609 + ], + [ + 2989, + 2591 + ], + [ + 2854, + 2595 + ], + [ + 2733, + 2567 + ], + [ + 2791, + 2592 + ], + [ + 2851, + 2606 + ], + [ + 3004, + 2609 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116323, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2902, + 3059 + ], + [ + 2974, + 2964 + ], + [ + 2900, + 2909 + ], + [ + 2833, + 2997 + ], + [ + 2902, + 3059 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116585, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2833, + 2997 + ], + [ + 2900, + 2909 + ], + [ + 2862, + 2881 + ], + [ + 2798, + 2965 + ], + [ + 2833, + 2997 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116588, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2826, + 2550 + ], + [ + 2834, + 2553 + ], + [ + 2850, + 2553 + ], + [ + 2826, + 2550 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171518, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2798, + 2965 + ], + [ + 2862, + 2881 + ], + [ + 2812, + 2866 + ], + [ + 2760, + 2935 + ], + [ + 2798, + 2965 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116589, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2770, + 2576 + ], + [ + 2736, + 2562 + ], + [ + 2726, + 2563 + ], + [ + 2733, + 2567 + ], + [ + 2770, + 2576 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171515, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2768, + 2531 + ], + [ + 2752, + 2525 + ], + [ + 2755, + 2527 + ], + [ + 2768, + 2531 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171521, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2760, + 2935 + ], + [ + 2812, + 2866 + ], + [ + 2772, + 2870 + ], + [ + 2731, + 2887 + ], + [ + 2731, + 2913 + ], + [ + 2760, + 2935 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116581, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2699, + 1397 + ], + [ + 2845, + 1349 + ], + [ + 2823, + 1322 + ], + [ + 2739, + 1365 + ], + [ + 2670, + 1386 + ], + [ + 2699, + 1397 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116113, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2813, + 870 + ], + [ + 2858, + 825 + ], + [ + 2770, + 738 + ], + [ + 2726, + 781 + ], + [ + 2813, + 870 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116679, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2811, + 697 + ], + [ + 2866, + 642 + ], + [ + 2798, + 579 + ], + [ + 2826, + 565 + ], + [ + 2811, + 551 + ], + [ + 2739, + 626 + ], + [ + 2811, + 697 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116678, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2743, + 622 + ], + [ + 2778, + 585 + ], + [ + 2724, + 535 + ], + [ + 2690, + 571 + ], + [ + 2743, + 622 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116686, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2725, + 783 + ], + [ + 2811, + 697 + ], + [ + 2739, + 626 + ], + [ + 2655, + 714 + ], + [ + 2725, + 783 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116677, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2766, + 1094 + ], + [ + 2828, + 1030 + ], + [ + 2787, + 979 + ], + [ + 2723, + 1042 + ], + [ + 2766, + 1094 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116727, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2777, + 905 + ], + [ + 2813, + 870 + ], + [ + 2726, + 781 + ], + [ + 2690, + 818 + ], + [ + 2777, + 905 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116725, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2723, + 1042 + ], + [ + 2787, + 979 + ], + [ + 2759, + 945 + ], + [ + 2695, + 1008 + ], + [ + 2723, + 1042 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116728, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2685, + 996 + ], + [ + 2777, + 905 + ], + [ + 2690, + 818 + ], + [ + 2671, + 836 + ], + [ + 2678, + 844 + ], + [ + 2645, + 876 + ], + [ + 2684, + 924 + ], + [ + 2650, + 953 + ], + [ + 2685, + 996 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116681, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2708, + 659 + ], + [ + 2743, + 622 + ], + [ + 2690, + 571 + ], + [ + 2655, + 609 + ], + [ + 2708, + 659 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116685, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2666, + 703 + ], + [ + 2708, + 659 + ], + [ + 2655, + 609 + ], + [ + 2614, + 654 + ], + [ + 2666, + 703 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116684, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2695, + 812 + ], + [ + 2725, + 783 + ], + [ + 2655, + 714 + ], + [ + 2626, + 745 + ], + [ + 2695, + 812 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116676, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2696, + 1340 + ], + [ + 2797, + 1291 + ], + [ + 2624, + 1083 + ], + [ + 2567, + 1185 + ], + [ + 2696, + 1340 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116031, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2650, + 953 + ], + [ + 2684, + 924 + ], + [ + 2645, + 876 + ], + [ + 2613, + 909 + ], + [ + 2650, + 953 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116726, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2675, + 1388 + ], + [ + 2670, + 1386 + ], + [ + 2664, + 1388 + ], + [ + 2657, + 1389 + ], + [ + 2589, + 1401 + ], + [ + 2675, + 1388 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221326, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2613, + 1356 + ], + [ + 2696, + 1340 + ], + [ + 2623, + 1353 + ], + [ + 2613, + 1356 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221246, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2616, + 2143 + ], + [ + 2648, + 2096 + ], + [ + 2666, + 2035 + ], + [ + 2646, + 2042 + ], + [ + 2640, + 2102 + ], + [ + 2616, + 2143 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116142, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2636, + 2183 + ], + [ + 2662, + 2151 + ], + [ + 2668, + 2140 + ], + [ + 2636, + 2183 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221273, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2736, + 2562 + ], + [ + 2755, + 2527 + ], + [ + 2694, + 2487 + ], + [ + 2650, + 2439 + ], + [ + 2615, + 2382 + ], + [ + 2592, + 2309 + ], + [ + 2591, + 2273 + ], + [ + 2604, + 2228 + ], + [ + 2671, + 2136 + ], + [ + 2703, + 2051 + ], + [ + 2712, + 1989 + ], + [ + 2673, + 1986 + ], + [ + 2674, + 2016 + ], + [ + 2648, + 2096 + ], + [ + 2568, + 2206 + ], + [ + 2550, + 2272 + ], + [ + 2582, + 2386 + ], + [ + 2603, + 2439 + ], + [ + 2626, + 2472 + ], + [ + 2684, + 2530 + ], + [ + 2736, + 2562 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116038, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2648, + 2096 + ], + [ + 2674, + 2016 + ], + [ + 2674, + 2013 + ], + [ + 2666, + 2035 + ], + [ + 2648, + 2096 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221260, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2671, + 1986 + ], + [ + 2659, + 1915 + ], + [ + 2634, + 1852 + ], + [ + 2671, + 1986 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116140, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2635, + 1855 + ], + [ + 2657, + 1910 + ], + [ + 2656, + 1902 + ], + [ + 2635, + 1855 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221187, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2674, + 2002 + ], + [ + 2673, + 1986 + ], + [ + 2663, + 1936 + ], + [ + 2671, + 1986 + ], + [ + 2674, + 2002 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221271, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2666, + 2035 + ], + [ + 2675, + 2010 + ], + [ + 2671, + 1986 + ], + [ + 2666, + 2035 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116141, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2673, + 2131 + ], + [ + 2689, + 2099 + ], + [ + 2694, + 2074 + ], + [ + 2673, + 2131 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221254, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2710, + 2001 + ], + [ + 2713, + 1988 + ], + [ + 2712, + 1989 + ], + [ + 2710, + 2001 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221262, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2724, + 2563 + ], + [ + 2736, + 2562 + ], + [ + 2669, + 2517 + ], + [ + 2614, + 2456 + ], + [ + 2642, + 2498 + ], + [ + 2680, + 2534 + ], + [ + 2724, + 2563 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116161, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2677, + 2522 + ], + [ + 2646, + 2491 + ], + [ + 2669, + 2517 + ], + [ + 2677, + 2522 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221282, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2663, + 2866 + ], + [ + 2697, + 2836 + ], + [ + 2701, + 2668 + ], + [ + 2683, + 2659 + ], + [ + 2593, + 2825 + ], + [ + 2663, + 2866 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116582, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2613, + 2456 + ], + [ + 2605, + 2442 + ], + [ + 2603, + 2439 + ], + [ + 2603, + 2438 + ], + [ + 2594, + 2424 + ], + [ + 2597, + 2431 + ], + [ + 2613, + 2456 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221284, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2593, + 2314 + ], + [ + 2591, + 2273 + ], + [ + 2592, + 2309 + ], + [ + 2593, + 2314 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221288, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2614, + 2456 + ], + [ + 2582, + 2386 + ], + [ + 2550, + 2272 + ], + [ + 2553, + 2316 + ], + [ + 2562, + 2351 + ], + [ + 2586, + 2411 + ], + [ + 2614, + 2456 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116160, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2560, + 2343 + ], + [ + 2558, + 2334 + ], + [ + 2558, + 2338 + ], + [ + 2560, + 2343 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221290, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2550, + 2272 + ], + [ + 2566, + 2210 + ], + [ + 2560, + 2221 + ], + [ + 2550, + 2267 + ], + [ + 2548, + 2255 + ], + [ + 2550, + 2272 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221278, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2580, + 1716 + ], + [ + 2561, + 1659 + ], + [ + 2539, + 1667 + ], + [ + 2580, + 1716 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116139, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2575, + 1449 + ], + [ + 2588, + 1440 + ], + [ + 2580, + 1443 + ], + [ + 2575, + 1449 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221308, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2633, + 1850 + ], + [ + 2575, + 1764 + ], + [ + 2566, + 1756 + ], + [ + 2633, + 1850 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221168, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2591, + 2273 + ], + [ + 2606, + 2225 + ], + [ + 2604, + 2228 + ], + [ + 2591, + 2273 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221286, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2574, + 2198 + ], + [ + 2623, + 2131 + ], + [ + 2640, + 2102 + ], + [ + 2579, + 2188 + ], + [ + 2574, + 2198 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221276, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2613, + 909 + ], + [ + 2678, + 844 + ], + [ + 2671, + 836 + ], + [ + 2653, + 814 + ], + [ + 2589, + 880 + ], + [ + 2613, + 909 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116724, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2589, + 880 + ], + [ + 2653, + 814 + ], + [ + 2671, + 836 + ], + [ + 2695, + 812 + ], + [ + 2626, + 745 + ], + [ + 2546, + 828 + ], + [ + 2589, + 880 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116682, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2623, + 747 + ], + [ + 2626, + 745 + ], + [ + 2575, + 700 + ], + [ + 2623, + 747 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171504, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2626, + 745 + ], + [ + 2666, + 703 + ], + [ + 2614, + 654 + ], + [ + 2573, + 698 + ], + [ + 2626, + 745 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116683, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2567, + 1185 + ], + [ + 2624, + 1083 + ], + [ + 2615, + 1073 + ], + [ + 2568, + 1113 + ], + [ + 2587, + 1136 + ], + [ + 2551, + 1166 + ], + [ + 2567, + 1185 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116067, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2551, + 1166 + ], + [ + 2587, + 1136 + ], + [ + 2568, + 1113 + ], + [ + 2532, + 1143 + ], + [ + 2551, + 1166 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116066, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2540, + 1495 + ], + [ + 2551, + 1478 + ], + [ + 2542, + 1490 + ], + [ + 2540, + 1495 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221293, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2539, + 1667 + ], + [ + 2542, + 1666 + ], + [ + 2533, + 1648 + ], + [ + 2539, + 1667 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221161, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2543, + 2223 + ], + [ + 2543, + 2218 + ], + [ + 2539, + 2214 + ], + [ + 2543, + 2223 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221280, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2550, + 2272 + ], + [ + 2546, + 2228 + ], + [ + 2539, + 2237 + ], + [ + 2550, + 2272 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116148, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2689, + 394 + ], + [ + 2747, + 308 + ], + [ + 2737, + 307 + ], + [ + 2681, + 389 + ], + [ + 2689, + 394 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116689, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2905, + 405 + ], + [ + 2957, + 331 + ], + [ + 2911, + 310 + ], + [ + 2876, + 385 + ], + [ + 2905, + 405 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116231, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2913, + 411 + ], + [ + 2966, + 335 + ], + [ + 2957, + 331 + ], + [ + 2905, + 405 + ], + [ + 2913, + 411 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116708, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2748, + 435 + ], + [ + 2813, + 341 + ], + [ + 2782, + 320 + ], + [ + 2753, + 300 + ], + [ + 2689, + 394 + ], + [ + 2748, + 435 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116228, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2961, + 444 + ], + [ + 3038, + 368 + ], + [ + 2966, + 335 + ], + [ + 2913, + 411 + ], + [ + 2961, + 444 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116707, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2961, + 444 + ], + [ + 2930, + 422 + ], + [ + 2954, + 440 + ], + [ + 2961, + 444 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171493, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2809, + 479 + ], + [ + 2864, + 403 + ], + [ + 2856, + 409 + ], + [ + 2809, + 479 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171456, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2809, + 479 + ], + [ + 2873, + 383 + ], + [ + 2843, + 362 + ], + [ + 2778, + 456 + ], + [ + 2809, + 479 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116720, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2913, + 500 + ], + [ + 2954, + 440 + ], + [ + 2909, + 408 + ], + [ + 2870, + 464 + ], + [ + 2913, + 500 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116705, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2842, + 507 + ], + [ + 2909, + 408 + ], + [ + 2876, + 385 + ], + [ + 2809, + 479 + ], + [ + 2842, + 507 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116719, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2972, + 550 + ], + [ + 3030, + 492 + ], + [ + 2961, + 444 + ], + [ + 2954, + 440 + ], + [ + 2913, + 500 + ], + [ + 2972, + 550 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116706, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2810, + 552 + ], + [ + 2848, + 512 + ], + [ + 2789, + 463 + ], + [ + 2755, + 501 + ], + [ + 2810, + 552 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116688, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2938, + 585 + ], + [ + 2972, + 550 + ], + [ + 2870, + 464 + ], + [ + 2842, + 507 + ], + [ + 2938, + 585 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116704, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2778, + 585 + ], + [ + 2810, + 552 + ], + [ + 2755, + 501 + ], + [ + 2724, + 535 + ], + [ + 2778, + 585 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116687, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3515, + 194 + ], + [ + 3611, + 24 + ], + [ + 3581, + 8 + ], + [ + 3488, + 178 + ], + [ + 3515, + 194 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116309, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3463, + -53 + ], + [ + 3469, + -64 + ], + [ + 3443, + -64 + ], + [ + 3463, + -53 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116166, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3412, + 316 + ], + [ + 3620, + -64 + ], + [ + 3469, + -64 + ], + [ + 3302, + 240 + ], + [ + 3412, + 316 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116163, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3436, + 334 + ], + [ + 3515, + 194 + ], + [ + 3488, + 178 + ], + [ + 3412, + 316 + ], + [ + 3436, + 334 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116300, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3456, + 348 + ], + [ + 3537, + 206 + ], + [ + 3515, + 194 + ], + [ + 3436, + 334 + ], + [ + 3456, + 348 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116302, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3421, + 25 + ], + [ + 3463, + -53 + ], + [ + 3443, + -64 + ], + [ + 3415, + -64 + ], + [ + 3379, + 1 + ], + [ + 3421, + 25 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116261, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3396, + 70 + ], + [ + 3421, + 25 + ], + [ + 3379, + 1 + ], + [ + 3390, + -19 + ], + [ + 3330, + -51 + ], + [ + 3293, + 15 + ], + [ + 3396, + 70 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116259, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3350, + 153 + ], + [ + 3396, + 70 + ], + [ + 3293, + 15 + ], + [ + 3249, + 95 + ], + [ + 3350, + 153 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116257, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3302, + 240 + ], + [ + 3350, + 153 + ], + [ + 3310, + 130 + ], + [ + 3263, + 213 + ], + [ + 3302, + 240 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116262, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3169, + 20 + ], + [ + 3216, + -64 + ], + [ + 3177, + -64 + ], + [ + 3139, + 4 + ], + [ + 3169, + 20 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116169, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3146, + 134 + ], + [ + 3257, + -64 + ], + [ + 3216, + -64 + ], + [ + 3169, + 20 + ], + [ + 3116, + 114 + ], + [ + 3146, + 134 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116168, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3266, + 207 + ], + [ + 3310, + 130 + ], + [ + 3249, + 95 + ], + [ + 3206, + 174 + ], + [ + 3236, + 195 + ], + [ + 3240, + 190 + ], + [ + 3266, + 207 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116253, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3170, + 271 + ], + [ + 3236, + 195 + ], + [ + 3206, + 174 + ], + [ + 3311, + -17 + ], + [ + 3280, + -34 + ], + [ + 3177, + 155 + ], + [ + 3160, + 143 + ], + [ + 3107, + 214 + ], + [ + 3170, + 271 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116164, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3205, + 303 + ], + [ + 3279, + 224 + ], + [ + 3263, + 213 + ], + [ + 3266, + 207 + ], + [ + 3240, + 190 + ], + [ + 3236, + 195 + ], + [ + 3170, + 271 + ], + [ + 3205, + 303 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116297, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3054, + 287 + ], + [ + 3160, + 143 + ], + [ + 3116, + 114 + ], + [ + 3079, + 171 + ], + [ + 3085, + 173 + ], + [ + 3018, + 270 + ], + [ + 3054, + 287 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116242, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2898, + 204 + ], + [ + 2948, + 121 + ], + [ + 2885, + 93 + ], + [ + 2836, + 176 + ], + [ + 2898, + 204 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116248, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2799, + 159 + ], + [ + 2844, + 75 + ], + [ + 2839, + 72 + ], + [ + 2799, + 159 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33061, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2828, + 271 + ], + [ + 2865, + 189 + ], + [ + 2845, + 180 + ], + [ + 2808, + 262 + ], + [ + 2828, + 271 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116247, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2859, + 286 + ], + [ + 2898, + 204 + ], + [ + 2865, + 189 + ], + [ + 2828, + 271 + ], + [ + 2859, + 286 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116244, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2782, + 321 + ], + [ + 2835, + 199 + ], + [ + 2826, + 195 + ], + [ + 2786, + 251 + ], + [ + 2790, + 254 + ], + [ + 2759, + 306 + ], + [ + 2782, + 321 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 30782, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2794, + 169 + ], + [ + 2839, + 72 + ], + [ + 2807, + 58 + ], + [ + 2762, + 154 + ], + [ + 2794, + 169 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 32619, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2762, + 154 + ], + [ + 2807, + 58 + ], + [ + 2839, + 72 + ], + [ + 2850, + 48 + ], + [ + 2784, + 19 + ], + [ + 2730, + 139 + ], + [ + 2762, + 154 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 27561, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2753, + 230 + ], + [ + 2778, + 193 + ], + [ + 2770, + 169 + ], + [ + 2759, + 164 + ], + [ + 2734, + 218 + ], + [ + 2753, + 230 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 32496, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2702, + 268 + ], + [ + 2734, + 218 + ], + [ + 2681, + 185 + ], + [ + 2650, + 232 + ], + [ + 2702, + 268 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 26872, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2734, + 218 + ], + [ + 2762, + 154 + ], + [ + 2700, + 126 + ], + [ + 2675, + 181 + ], + [ + 2734, + 218 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 27074, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2650, + 232 + ], + [ + 2681, + 185 + ], + [ + 2605, + 138 + ], + [ + 2596, + 155 + ], + [ + 2581, + 185 + ], + [ + 2650, + 232 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 29132, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2586, + -30 + ], + [ + 2599, + -64 + ], + [ + 2510, + -64 + ], + [ + 2508, + -58 + ], + [ + 2586, + -30 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 20350, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2688, + 3 + ], + [ + 2611, + -21 + ], + [ + 2508, + -58 + ], + [ + 2506, + -52 + ], + [ + 2688, + 3 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 35487, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2577, + 38 + ], + [ + 2596, + -21 + ], + [ + 2493, + -56 + ], + [ + 2474, + 3 + ], + [ + 2577, + 38 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 30241, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2615, + 120 + ], + [ + 2628, + 93 + ], + [ + 2644, + 61 + ], + [ + 2348, + -41 + ], + [ + 2329, + 20 + ], + [ + 2615, + 120 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 20544, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2503, + -60 + ], + [ + 2504, + -64 + ], + [ + 2491, + -64 + ], + [ + 2503, + -60 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 25699, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2596, + 155 + ], + [ + 2615, + 120 + ], + [ + 2329, + 20 + ], + [ + 2318, + 57 + ], + [ + 2596, + 155 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 20665, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2546, + 257 + ], + [ + 2557, + 233 + ], + [ + 2293, + 140 + ], + [ + 2285, + 167 + ], + [ + 2453, + 226 + ], + [ + 2450, + 233 + ], + [ + 2508, + 253 + ], + [ + 2511, + 245 + ], + [ + 2546, + 257 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 20948, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2474, + 3 + ], + [ + 2493, + -56 + ], + [ + 2469, + -64 + ], + [ + 2355, + -64 + ], + [ + 2348, + -41 + ], + [ + 2474, + 3 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 30839, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2472, + 203 + ], + [ + 2480, + 179 + ], + [ + 2300, + 115 + ], + [ + 2293, + 140 + ], + [ + 2472, + 203 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 29701, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2367, + 139 + ], + [ + 2377, + 111 + ], + [ + 2425, + 127 + ], + [ + 2436, + 98 + ], + [ + 2318, + 57 + ], + [ + 2300, + 115 + ], + [ + 2367, + 139 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 31578, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2312, + 55 + ], + [ + 2348, + -64 + ], + [ + 2316, + -64 + ], + [ + 2283, + 45 + ], + [ + 2312, + 55 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 25215, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2302, + -16 + ], + [ + 2316, + -64 + ], + [ + 2248, + -64 + ], + [ + 2240, + -38 + ], + [ + 2302, + -16 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34817, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2231, + 323 + ], + [ + 2292, + 121 + ], + [ + 2200, + 87 + ], + [ + 2179, + 151 + ], + [ + 2241, + 170 + ], + [ + 2219, + 237 + ], + [ + 2195, + 311 + ], + [ + 2231, + 323 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 36020, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2292, + 121 + ], + [ + 2312, + 55 + ], + [ + 2221, + 24 + ], + [ + 2200, + 87 + ], + [ + 2292, + 121 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34048, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2283, + 45 + ], + [ + 2302, + -16 + ], + [ + 2240, + -38 + ], + [ + 2221, + 24 + ], + [ + 2283, + 45 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34578, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2245, + -53 + ], + [ + 2248, + -64 + ], + [ + 2149, + -64 + ], + [ + 2245, + -53 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 35388, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2219, + 237 + ], + [ + 2241, + 170 + ], + [ + 2179, + 151 + ], + [ + 2176, + 161 + ], + [ + 2159, + 212 + ], + [ + 2165, + 221 + ], + [ + 2219, + 237 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33016, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2228, + -2 + ], + [ + 2245, + -53 + ], + [ + 2149, + -64 + ], + [ + 2122, + -64 + ], + [ + 2117, + -14 + ], + [ + 2228, + -2 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34682, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2212, + 51 + ], + [ + 2228, + -2 + ], + [ + 2117, + -14 + ], + [ + 2111, + 39 + ], + [ + 2212, + 51 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34166, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2191, + 116 + ], + [ + 2212, + 51 + ], + [ + 2111, + 39 + ], + [ + 2104, + 107 + ], + [ + 2191, + 116 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 33507, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2176, + 161 + ], + [ + 2191, + 116 + ], + [ + 2104, + 107 + ], + [ + 2099, + 151 + ], + [ + 2176, + 161 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 32821, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2159, + 212 + ], + [ + 2176, + 161 + ], + [ + 2099, + 151 + ], + [ + 2093, + 203 + ], + [ + 2159, + 212 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 31890, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2957, + 331 + ], + [ + 3009, + 255 + ], + [ + 2950, + 228 + ], + [ + 2911, + 310 + ], + [ + 2957, + 331 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116234, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3133, + 323 + ], + [ + 3170, + 271 + ], + [ + 3107, + 214 + ], + [ + 3054, + 287 + ], + [ + 3133, + 323 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116241, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3171, + 340 + ], + [ + 3205, + 303 + ], + [ + 3170, + 271 + ], + [ + 3133, + 323 + ], + [ + 3171, + 340 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116294, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3133, + 323 + ], + [ + 3177, + 346 + ], + [ + 3171, + 340 + ], + [ + 3133, + 323 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171474, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3226, + 322 + ], + [ + 3302, + 240 + ], + [ + 3279, + 224 + ], + [ + 3205, + 303 + ], + [ + 3226, + 322 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116298, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2629, + 296 + ], + [ + 2664, + 241 + ], + [ + 2634, + 221 + ], + [ + 2599, + 275 + ], + [ + 2629, + 296 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 28297, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2765, + 297 + ], + [ + 2790, + 254 + ], + [ + 2786, + 251 + ], + [ + 2757, + 292 + ], + [ + 2765, + 297 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 31015, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2708, + 259 + ], + [ + 2734, + 256 + ], + [ + 2753, + 230 + ], + [ + 2734, + 218 + ], + [ + 2708, + 259 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 36680, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2683, + 331 + ], + [ + 2718, + 278 + ], + [ + 2664, + 241 + ], + [ + 2629, + 296 + ], + [ + 2683, + 331 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 27746, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 98, + 2416 + ], + [ + 131, + 2331 + ], + [ + -64, + 2241 + ], + [ + -64, + 2342 + ], + [ + 98, + 2416 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63799, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8, + 2274 + ], + [ + 43, + 2153 + ], + [ + -57, + 2120 + ], + [ + -63, + 2146 + ], + [ + -64, + 2146 + ], + [ + -64, + 2241 + ], + [ + 8, + 2274 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64911, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 57, + 3044 + ], + [ + 92, + 2938 + ], + [ + -28, + 2899 + ], + [ + -46, + 2958 + ], + [ + -62, + 2987 + ], + [ + -64, + 2987 + ], + [ + -64, + 3005 + ], + [ + 57, + 3044 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70998, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -62, + 2987 + ], + [ + -48, + 2962 + ], + [ + -28, + 2899 + ], + [ + -64, + 2888 + ], + [ + -64, + 2987 + ], + [ + -62, + 2987 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71040, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -64, + 3351 + ], + [ + -36, + 3327 + ], + [ + 31, + 3349 + ], + [ + 105, + 3128 + ], + [ + 108, + 3061 + ], + [ + -64, + 3006 + ], + [ + -64, + 3351 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74544, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58, + 3345 + ], + [ + -64, + 3350 + ], + [ + -64, + 3351 + ], + [ + -58, + 3345 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154372, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 225, + 4053 + ], + [ + 250, + 4014 + ], + [ + 253, + 3988 + ], + [ + 245, + 3951 + ], + [ + 138, + 3497 + ], + [ + 152, + 3493 + ], + [ + 150, + 3415 + ], + [ + -58, + 3345 + ], + [ + -64, + 3350 + ], + [ + -64, + 4025 + ], + [ + 8, + 4051 + ], + [ + 225, + 4053 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73852, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 267, + 3981 + ], + [ + 380, + 3622 + ], + [ + 374, + 3599 + ], + [ + 308, + 3578 + ], + [ + 291, + 3634 + ], + [ + 160, + 3594 + ], + [ + 250, + 3975 + ], + [ + 267, + 3981 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74445, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 150, + 3415 + ], + [ + 160, + 3226 + ], + [ + 201, + 2989 + ], + [ + 251, + 2821 + ], + [ + 330, + 2634 + ], + [ + 25, + 2493 + ], + [ + -15, + 2627 + ], + [ + 48, + 2646 + ], + [ + 15, + 2755 + ], + [ + -64, + 2728 + ], + [ + -64, + 2888 + ], + [ + 92, + 2938 + ], + [ + 57, + 3044 + ], + [ + 108, + 3061 + ], + [ + 105, + 3128 + ], + [ + 31, + 3349 + ], + [ + -36, + 3327 + ], + [ + -58, + 3345 + ], + [ + 150, + 3415 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73907, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -47, + 2959 + ], + [ + -46, + 2958 + ], + [ + -28, + 2899 + ], + [ + -47, + 2959 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154368, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1221, + 4160 + ], + [ + 1273, + 4160 + ], + [ + 1280, + 4128 + ], + [ + 1337, + 4077 + ], + [ + 1476, + 4063 + ], + [ + 1520, + 4058 + ], + [ + 1564, + 4054 + ], + [ + 2155, + 3997 + ], + [ + 2229, + 3912 + ], + [ + 2132, + 3921 + ], + [ + 2079, + 3927 + ], + [ + 1816, + 3953 + ], + [ + 1482, + 3985 + ], + [ + 1428, + 3889 + ], + [ + 1630, + 3621 + ], + [ + 1717, + 3505 + ], + [ + 1748, + 3465 + ], + [ + 1765, + 3442 + ], + [ + 1720, + 3400 + ], + [ + 1540, + 3640 + ], + [ + 1267, + 4000 + ], + [ + 1255, + 4008 + ], + [ + 924, + 4040 + ], + [ + 476, + 4084 + ], + [ + 471, + 4059 + ], + [ + 392, + 4066 + ], + [ + 440, + 3911 + ], + [ + 428, + 3853 + ], + [ + 407, + 3755 + ], + [ + 476, + 3536 + ], + [ + 513, + 3532 + ], + [ + 577, + 3526 + ], + [ + 770, + 3508 + ], + [ + 823, + 3502 + ], + [ + 1007, + 3485 + ], + [ + 999, + 3401 + ], + [ + 913, + 3409 + ], + [ + 862, + 3414 + ], + [ + 764, + 3424 + ], + [ + 503, + 3449 + ], + [ + 566, + 3248 + ], + [ + 611, + 3106 + ], + [ + 660, + 2950 + ], + [ + 699, + 2840 + ], + [ + 738, + 2823 + ], + [ + 876, + 2888 + ], + [ + 1037, + 2963 + ], + [ + 1060, + 2973 + ], + [ + 1197, + 3038 + ], + [ + 1198, + 3037 + ], + [ + 1299, + 3084 + ], + [ + 1454, + 3156 + ], + [ + 1210, + 2933 + ], + [ + 1141, + 2900 + ], + [ + 971, + 2822 + ], + [ + 887, + 2782 + ], + [ + 838, + 2760 + ], + [ + 897, + 2646 + ], + [ + 886, + 2636 + ], + [ + 826, + 2753 + ], + [ + 764, + 2724 + ], + [ + 728, + 2708 + ], + [ + 688, + 2689 + ], + [ + 645, + 2669 + ], + [ + 582, + 2640 + ], + [ + 531, + 2617 + ], + [ + 438, + 2574 + ], + [ + 298, + 2509 + ], + [ + 216, + 2471 + ], + [ + 98, + 2416 + ], + [ + -64, + 2342 + ], + [ + -64, + 2452 + ], + [ + 25, + 2493 + ], + [ + 330, + 2634 + ], + [ + 513, + 2719 + ], + [ + 614, + 2765 + ], + [ + 634, + 2811 + ], + [ + 557, + 3058 + ], + [ + 482, + 3296 + ], + [ + 480, + 3302 + ], + [ + 386, + 3603 + ], + [ + 380, + 3622 + ], + [ + 267, + 3981 + ], + [ + 250, + 3975 + ], + [ + 253, + 3988 + ], + [ + 250, + 4014 + ], + [ + 225, + 4053 + ], + [ + 8, + 4051 + ], + [ + -64, + 4025 + ], + [ + -64, + 4160 + ], + [ + 477, + 4160 + ], + [ + 488, + 4159 + ], + [ + 560, + 4152 + ], + [ + 645, + 4144 + ], + [ + 728, + 4136 + ], + [ + 803, + 4129 + ], + [ + 915, + 4118 + ], + [ + 940, + 4115 + ], + [ + 966, + 4113 + ], + [ + 1008, + 4109 + ], + [ + 1052, + 4104 + ], + [ + 1097, + 4100 + ], + [ + 1125, + 4097 + ], + [ + 1222, + 4088 + ], + [ + 1234, + 4100 + ], + [ + 1221, + 4160 + ] + ], + [ + [ + 699, + 2840 + ], + [ + 683, + 2877 + ], + [ + 693, + 2843 + ], + [ + 699, + 2840 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154406, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 108, + 3061 + ], + [ + 57, + 3044 + ], + [ + -64, + 3005 + ], + [ + -64, + 3006 + ], + [ + 108, + 3061 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154367, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15, + 2755 + ], + [ + 48, + 2646 + ], + [ + -15, + 2627 + ], + [ + 25, + 2493 + ], + [ + -64, + 2452 + ], + [ + -64, + 2728 + ], + [ + 15, + 2755 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71086, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 932, + 2560 + ], + [ + 1043, + 2348 + ], + [ + 1053, + 2316 + ], + [ + 812, + 2239 + ], + [ + 677, + 2212 + ], + [ + 666, + 2262 + ], + [ + 330, + 2161 + ], + [ + 322, + 2189 + ], + [ + 346, + 2190 + ], + [ + 346, + 2200 + ], + [ + 186, + 2149 + ], + [ + 193, + 2131 + ], + [ + 134, + 2117 + ], + [ + 82, + 2059 + ], + [ + -32, + 2015 + ], + [ + -39, + 2043 + ], + [ + -64, + 2034 + ], + [ + -64, + 2146 + ], + [ + -63, + 2146 + ], + [ + -57, + 2120 + ], + [ + 279, + 2224 + ], + [ + 313, + 2246 + ], + [ + 649, + 2347 + ], + [ + 645, + 2364 + ], + [ + 707, + 2382 + ], + [ + 683, + 2496 + ], + [ + 856, + 2540 + ], + [ + 868, + 2512 + ], + [ + 934, + 2542 + ], + [ + 925, + 2558 + ], + [ + 932, + 2560 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63043, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 150, + 3415 + ], + [ + 163, + 3206 + ], + [ + 160, + 3226 + ], + [ + 150, + 3415 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154374, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 316, + 2407 + ], + [ + 346, + 2256 + ], + [ + 279, + 2224 + ], + [ + 43, + 2153 + ], + [ + 8, + 2274 + ], + [ + 131, + 2331 + ], + [ + 145, + 2296 + ], + [ + 281, + 2334 + ], + [ + 258, + 2381 + ], + [ + 316, + 2407 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64444, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 216, + 2471 + ], + [ + 281, + 2334 + ], + [ + 145, + 2296 + ], + [ + 131, + 2331 + ], + [ + 98, + 2416 + ], + [ + 216, + 2471 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68954, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 201, + 2989 + ], + [ + 256, + 2811 + ], + [ + 251, + 2821 + ], + [ + 201, + 2989 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154369, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 291, + 3634 + ], + [ + 308, + 3578 + ], + [ + 374, + 3599 + ], + [ + 351, + 3445 + ], + [ + 347, + 3336 + ], + [ + 351, + 3255 + ], + [ + 164, + 3198 + ], + [ + 150, + 3415 + ], + [ + 152, + 3493 + ], + [ + 138, + 3497 + ], + [ + 160, + 3594 + ], + [ + 291, + 3634 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70456, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 298, + 2509 + ], + [ + 316, + 2407 + ], + [ + 258, + 2381 + ], + [ + 216, + 2471 + ], + [ + 298, + 2509 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69125, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 480, + 3302 + ], + [ + 441, + 3283 + ], + [ + 351, + 3255 + ], + [ + 480, + 3302 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154373, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 386, + 3603 + ], + [ + 480, + 3302 + ], + [ + 351, + 3255 + ], + [ + 347, + 3336 + ], + [ + 354, + 3485 + ], + [ + 374, + 3599 + ], + [ + 386, + 3603 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71923, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 438, + 2574 + ], + [ + 495, + 2301 + ], + [ + 346, + 2256 + ], + [ + 298, + 2509 + ], + [ + 438, + 2574 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63836, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 386, + 2863 + ], + [ + 452, + 2840 + ], + [ + 513, + 2719 + ], + [ + 330, + 2634 + ], + [ + 258, + 2804 + ], + [ + 386, + 2863 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72606, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 353, + 3460 + ], + [ + 347, + 3336 + ], + [ + 351, + 3445 + ], + [ + 353, + 3460 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154384, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 351, + 3255 + ], + [ + 370, + 3106 + ], + [ + 392, + 3020 + ], + [ + 440, + 2881 + ], + [ + 513, + 2719 + ], + [ + 452, + 2840 + ], + [ + 386, + 2863 + ], + [ + 258, + 2804 + ], + [ + 201, + 2989 + ], + [ + 164, + 3198 + ], + [ + 351, + 3255 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71171, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 298, + 2509 + ], + [ + 346, + 2256 + ], + [ + 316, + 2407 + ], + [ + 298, + 2509 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154444, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 380, + 3622 + ], + [ + 386, + 3603 + ], + [ + 374, + 3599 + ], + [ + 380, + 3622 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75280, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 428, + 3853 + ], + [ + 607, + 3836 + ], + [ + 581, + 3563 + ], + [ + 513, + 3532 + ], + [ + 476, + 3536 + ], + [ + 407, + 3755 + ], + [ + 428, + 3853 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70966, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 471, + 4059 + ], + [ + 678, + 4039 + ], + [ + 653, + 3785 + ], + [ + 603, + 3790 + ], + [ + 607, + 3836 + ], + [ + 428, + 3853 + ], + [ + 471, + 4059 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71427, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 581, + 3563 + ], + [ + 577, + 3526 + ], + [ + 513, + 3532 + ], + [ + 581, + 3563 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75134, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 503, + 3449 + ], + [ + 764, + 3424 + ], + [ + 748, + 3267 + ], + [ + 659, + 3277 + ], + [ + 566, + 3248 + ], + [ + 503, + 3449 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74511, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 666, + 2262 + ], + [ + 677, + 2212 + ], + [ + 708, + 2219 + ], + [ + 860, + 1699 + ], + [ + 803, + 1723 + ], + [ + 578, + 1624 + ], + [ + 526, + 1589 + ], + [ + 398, + 2094 + ], + [ + 372, + 2125 + ], + [ + 363, + 2171 + ], + [ + 666, + 2262 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63729, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 582, + 2640 + ], + [ + 601, + 2577 + ], + [ + 649, + 2347 + ], + [ + 587, + 2328 + ], + [ + 531, + 2617 + ], + [ + 582, + 2640 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63641, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 531, + 2617 + ], + [ + 587, + 2328 + ], + [ + 495, + 2301 + ], + [ + 438, + 2574 + ], + [ + 531, + 2617 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63584, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 441, + 3283 + ], + [ + 404, + 3265 + ], + [ + 510, + 3037 + ], + [ + 557, + 3058 + ], + [ + 634, + 2811 + ], + [ + 614, + 2765 + ], + [ + 513, + 2719 + ], + [ + 440, + 2881 + ], + [ + 392, + 3020 + ], + [ + 370, + 3106 + ], + [ + 351, + 3255 + ], + [ + 441, + 3283 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71982, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 482, + 3296 + ], + [ + 557, + 3058 + ], + [ + 510, + 3037 + ], + [ + 404, + 3265 + ], + [ + 441, + 3283 + ], + [ + 482, + 3296 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73148, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 480, + 3302 + ], + [ + 482, + 3296 + ], + [ + 441, + 3283 + ], + [ + 480, + 3302 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75186, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 764, + 2724 + ], + [ + 832, + 2534 + ], + [ + 782, + 2521 + ], + [ + 728, + 2708 + ], + [ + 764, + 2724 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64130, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 821, + 3008 + ], + [ + 876, + 2888 + ], + [ + 738, + 2823 + ], + [ + 699, + 2840 + ], + [ + 660, + 2950 + ], + [ + 821, + 3008 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73237, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 728, + 2708 + ], + [ + 736, + 2683 + ], + [ + 778, + 2537 + ], + [ + 728, + 2708 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154442, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 736, + 2683 + ], + [ + 782, + 2521 + ], + [ + 730, + 2508 + ], + [ + 694, + 2664 + ], + [ + 736, + 2683 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64209, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 816, + 3169 + ], + [ + 854, + 3086 + ], + [ + 804, + 3063 + ], + [ + 821, + 3008 + ], + [ + 660, + 2950 + ], + [ + 611, + 3106 + ], + [ + 816, + 3169 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71864, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 713, + 3271 + ], + [ + 748, + 3267 + ], + [ + 762, + 3224 + ], + [ + 731, + 3214 + ], + [ + 713, + 3271 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74051, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 683, + 2877 + ], + [ + 699, + 2840 + ], + [ + 693, + 2843 + ], + [ + 683, + 2877 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74106, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 688, + 2689 + ], + [ + 730, + 2508 + ], + [ + 683, + 2496 + ], + [ + 645, + 2669 + ], + [ + 688, + 2689 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64296, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 728, + 2708 + ], + [ + 736, + 2683 + ], + [ + 694, + 2664 + ], + [ + 688, + 2689 + ], + [ + 728, + 2708 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65381, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 645, + 2669 + ], + [ + 707, + 2382 + ], + [ + 645, + 2364 + ], + [ + 601, + 2577 + ], + [ + 582, + 2640 + ], + [ + 645, + 2669 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63504, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 659, + 3277 + ], + [ + 713, + 3271 + ], + [ + 731, + 3214 + ], + [ + 762, + 3224 + ], + [ + 782, + 3158 + ], + [ + 611, + 3106 + ], + [ + 566, + 3248 + ], + [ + 659, + 3277 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73995, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 760, + 3644 + ], + [ + 779, + 3602 + ], + [ + 770, + 3508 + ], + [ + 577, + 3526 + ], + [ + 581, + 3563 + ], + [ + 760, + 3644 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74778, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 603, + 3790 + ], + [ + 775, + 3773 + ], + [ + 795, + 3771 + ], + [ + 779, + 3602 + ], + [ + 760, + 3644 + ], + [ + 581, + 3563 + ], + [ + 603, + 3790 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75233, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 678, + 4039 + ], + [ + 799, + 4028 + ], + [ + 775, + 3773 + ], + [ + 653, + 3785 + ], + [ + 678, + 4039 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75331, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 779, + 3602 + ], + [ + 823, + 3502 + ], + [ + 770, + 3508 + ], + [ + 779, + 3602 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76027, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 799, + 4028 + ], + [ + 922, + 4016 + ], + [ + 919, + 3989 + ], + [ + 994, + 3792 + ], + [ + 779, + 3813 + ], + [ + 799, + 4028 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75935, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 779, + 3813 + ], + [ + 994, + 3792 + ], + [ + 1153, + 3371 + ], + [ + 1024, + 3383 + ], + [ + 1011, + 3400 + ], + [ + 999, + 3401 + ], + [ + 1007, + 3485 + ], + [ + 823, + 3502 + ], + [ + 779, + 3602 + ], + [ + 795, + 3771 + ], + [ + 775, + 3773 + ], + [ + 779, + 3813 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72718, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 946, + 3228 + ], + [ + 1060, + 2973 + ], + [ + 1037, + 2963 + ], + [ + 921, + 3216 + ], + [ + 946, + 3228 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73415, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 969, + 2655 + ], + [ + 970, + 2656 + ], + [ + 947, + 2691 + ], + [ + 948, + 2692 + ], + [ + 1021, + 2583 + ], + [ + 969, + 2655 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171580, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 969, + 2655 + ], + [ + 1021, + 2583 + ], + [ + 940, + 2562 + ], + [ + 908, + 2624 + ], + [ + 969, + 2655 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72281, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 971, + 2822 + ], + [ + 1113, + 2606 + ], + [ + 1021, + 2583 + ], + [ + 887, + 2782 + ], + [ + 971, + 2822 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67123, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1066, + 2248 + ], + [ + 1084, + 2184 + ], + [ + 928, + 2138 + ], + [ + 907, + 2202 + ], + [ + 1066, + 2248 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64832, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1046, + 2313 + ], + [ + 1066, + 2248 + ], + [ + 907, + 2202 + ], + [ + 887, + 2263 + ], + [ + 1046, + 2313 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64910, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 887, + 2263 + ], + [ + 1033, + 1820 + ], + [ + 998, + 1808 + ], + [ + 1012, + 1764 + ], + [ + 973, + 1747 + ], + [ + 806, + 2238 + ], + [ + 887, + 2263 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64644, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 897, + 2645 + ], + [ + 908, + 2624 + ], + [ + 940, + 2562 + ], + [ + 932, + 2560 + ], + [ + 925, + 2558 + ], + [ + 886, + 2636 + ], + [ + 897, + 2645 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171517, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 887, + 2782 + ], + [ + 948, + 2692 + ], + [ + 947, + 2691 + ], + [ + 887, + 2782 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154371, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 904, + 3320 + ], + [ + 946, + 3228 + ], + [ + 921, + 3216 + ], + [ + 899, + 3265 + ], + [ + 904, + 3320 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 74239, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 899, + 3265 + ], + [ + 1037, + 2963 + ], + [ + 876, + 2888 + ], + [ + 821, + 3008 + ], + [ + 804, + 3063 + ], + [ + 930, + 3120 + ], + [ + 892, + 3203 + ], + [ + 899, + 3265 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73510, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 862, + 3414 + ], + [ + 913, + 3409 + ], + [ + 904, + 3320 + ], + [ + 862, + 3414 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76086, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 887, + 2782 + ], + [ + 970, + 2656 + ], + [ + 908, + 2624 + ], + [ + 838, + 2760 + ], + [ + 887, + 2782 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72222, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 925, + 2558 + ], + [ + 934, + 2542 + ], + [ + 868, + 2512 + ], + [ + 856, + 2540 + ], + [ + 925, + 2558 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65554, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 895, + 2618 + ], + [ + 925, + 2558 + ], + [ + 856, + 2540 + ], + [ + 836, + 2588 + ], + [ + 895, + 2618 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65457, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 764, + 3424 + ], + [ + 862, + 3414 + ], + [ + 904, + 3320 + ], + [ + 892, + 3203 + ], + [ + 930, + 3120 + ], + [ + 854, + 3086 + ], + [ + 816, + 3169 + ], + [ + 782, + 3158 + ], + [ + 748, + 3267 + ], + [ + 764, + 3424 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72660, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 826, + 2753 + ], + [ + 895, + 2618 + ], + [ + 836, + 2588 + ], + [ + 856, + 2540 + ], + [ + 832, + 2534 + ], + [ + 764, + 2724 + ], + [ + 826, + 2753 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64068, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 806, + 2238 + ], + [ + 949, + 1819 + ], + [ + 897, + 1783 + ], + [ + 760, + 2229 + ], + [ + 806, + 2238 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64572, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 913, + 3409 + ], + [ + 1011, + 3400 + ], + [ + 1024, + 3383 + ], + [ + 1153, + 3371 + ], + [ + 1164, + 3341 + ], + [ + 1093, + 3337 + ], + [ + 1105, + 3301 + ], + [ + 946, + 3228 + ], + [ + 904, + 3320 + ], + [ + 913, + 3409 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71657, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1105, + 3301 + ], + [ + 1197, + 3038 + ], + [ + 1060, + 2973 + ], + [ + 946, + 3228 + ], + [ + 1105, + 3301 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73566, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1052, + 2340 + ], + [ + 1057, + 2325 + ], + [ + 1059, + 2320 + ], + [ + 1061, + 2313 + ], + [ + 1101, + 2178 + ], + [ + 1115, + 2135 + ], + [ + 1128, + 2092 + ], + [ + 1131, + 2086 + ], + [ + 1133, + 2080 + ], + [ + 1149, + 2023 + ], + [ + 1164, + 1974 + ], + [ + 1152, + 1964 + ], + [ + 1138, + 2013 + ], + [ + 1125, + 2053 + ], + [ + 1104, + 2118 + ], + [ + 1084, + 2184 + ], + [ + 1066, + 2248 + ], + [ + 1046, + 2313 + ], + [ + 922, + 2274 + ], + [ + 1053, + 2316 + ], + [ + 1046, + 2338 + ], + [ + 1052, + 2340 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171619, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1134, + 2341 + ], + [ + 1206, + 2334 + ], + [ + 1136, + 2336 + ], + [ + 1061, + 2313 + ], + [ + 1134, + 2341 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171512, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1136, + 2336 + ], + [ + 1178, + 2203 + ], + [ + 1101, + 2178 + ], + [ + 1061, + 2313 + ], + [ + 1136, + 2336 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67979, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1134, + 2341 + ], + [ + 1061, + 2313 + ], + [ + 1059, + 2320 + ], + [ + 1134, + 2341 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67252, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1133, + 2347 + ], + [ + 1134, + 2341 + ], + [ + 1059, + 2320 + ], + [ + 1057, + 2325 + ], + [ + 1133, + 2347 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67428, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1141, + 2900 + ], + [ + 1264, + 2648 + ], + [ + 1113, + 2606 + ], + [ + 971, + 2822 + ], + [ + 1141, + 2900 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66710, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1113, + 2606 + ], + [ + 1263, + 2648 + ], + [ + 1209, + 2630 + ], + [ + 1113, + 2606 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171514, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1136, + 2336 + ], + [ + 1206, + 2334 + ], + [ + 1224, + 2296 + ], + [ + 1156, + 2274 + ], + [ + 1136, + 2336 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71496, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1256, + 2402 + ], + [ + 1267, + 2385 + ], + [ + 1057, + 2325 + ], + [ + 1052, + 2340 + ], + [ + 1256, + 2402 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67351, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1302, + 2359 + ], + [ + 1328, + 2318 + ], + [ + 1261, + 2287 + ], + [ + 1237, + 2338 + ], + [ + 1302, + 2359 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68750, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1282, + 2242 + ], + [ + 1301, + 2202 + ], + [ + 1288, + 2196 + ], + [ + 1268, + 2236 + ], + [ + 1282, + 2242 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69219, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1295, + 2371 + ], + [ + 1302, + 2366 + ], + [ + 1286, + 2356 + ], + [ + 1280, + 2365 + ], + [ + 1295, + 2371 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68127, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1302, + 2366 + ], + [ + 1299, + 2362 + ], + [ + 1302, + 2358 + ], + [ + 1221, + 2339 + ], + [ + 1286, + 2356 + ], + [ + 1302, + 2366 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171509, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1328, + 2318 + ], + [ + 1354, + 2278 + ], + [ + 1282, + 2242 + ], + [ + 1261, + 2287 + ], + [ + 1328, + 2318 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71358, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1379, + 2238 + ], + [ + 1402, + 2201 + ], + [ + 1319, + 2163 + ], + [ + 1301, + 2202 + ], + [ + 1379, + 2238 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72105, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1354, + 2278 + ], + [ + 1379, + 2238 + ], + [ + 1301, + 2202 + ], + [ + 1282, + 2242 + ], + [ + 1354, + 2278 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72049, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1415, + 3440 + ], + [ + 1441, + 3379 + ], + [ + 1425, + 3375 + ], + [ + 1515, + 3185 + ], + [ + 1299, + 3084 + ], + [ + 1212, + 3344 + ], + [ + 1415, + 3440 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73770, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1230, + 2942 + ], + [ + 1265, + 2862 + ], + [ + 1364, + 2681 + ], + [ + 1264, + 2648 + ], + [ + 1141, + 2900 + ], + [ + 1230, + 2942 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66655, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1261, + 2287 + ], + [ + 1282, + 2242 + ], + [ + 1268, + 2236 + ], + [ + 1248, + 2280 + ], + [ + 1261, + 2287 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68811, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1302, + 2359 + ], + [ + 1237, + 2338 + ], + [ + 1261, + 2287 + ], + [ + 1248, + 2280 + ], + [ + 1221, + 2339 + ], + [ + 1302, + 2359 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68067, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1257, + 2261 + ], + [ + 1275, + 2224 + ], + [ + 1260, + 2219 + ], + [ + 1243, + 2256 + ], + [ + 1257, + 2261 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70895, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1239, + 2300 + ], + [ + 1257, + 2261 + ], + [ + 1243, + 2256 + ], + [ + 1224, + 2296 + ], + [ + 1239, + 2300 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71397, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1280, + 2365 + ], + [ + 1286, + 2356 + ], + [ + 1221, + 2339 + ], + [ + 1134, + 2341 + ], + [ + 1133, + 2347 + ], + [ + 1218, + 2343 + ], + [ + 1280, + 2365 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66766, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1267, + 2385 + ], + [ + 1280, + 2365 + ], + [ + 1218, + 2343 + ], + [ + 1133, + 2347 + ], + [ + 1267, + 2385 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68187, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1243, + 2256 + ], + [ + 1260, + 2219 + ], + [ + 1183, + 2189 + ], + [ + 1178, + 2203 + ], + [ + 1170, + 2229 + ], + [ + 1243, + 2256 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71251, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1224, + 2296 + ], + [ + 1243, + 2256 + ], + [ + 1170, + 2229 + ], + [ + 1156, + 2274 + ], + [ + 1224, + 2296 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71309, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1134, + 2341 + ], + [ + 1221, + 2339 + ], + [ + 1239, + 2300 + ], + [ + 1224, + 2296 + ], + [ + 1206, + 2334 + ], + [ + 1134, + 2341 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68687, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1212, + 3344 + ], + [ + 1299, + 3084 + ], + [ + 1198, + 3037 + ], + [ + 1093, + 3337 + ], + [ + 1212, + 3344 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73628, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 924, + 4040 + ], + [ + 1255, + 4008 + ], + [ + 1267, + 4000 + ], + [ + 1540, + 3640 + ], + [ + 1442, + 3564 + ], + [ + 1455, + 3545 + ], + [ + 1369, + 3478 + ], + [ + 1401, + 3434 + ], + [ + 1212, + 3344 + ], + [ + 1164, + 3341 + ], + [ + 919, + 3989 + ], + [ + 924, + 4040 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70282, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1250, + 1781 + ], + [ + 1288, + 1716 + ], + [ + 1236, + 1704 + ], + [ + 1225, + 1758 + ], + [ + 1232, + 1774 + ], + [ + 1250, + 1781 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116114, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1275, + 1518 + ], + [ + 1302, + 1490 + ], + [ + 1283, + 1479 + ], + [ + 1275, + 1518 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116071, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1303, + 1490 + ], + [ + 1320, + 1470 + ], + [ + 1296, + 1456 + ], + [ + 1291, + 1444 + ], + [ + 1283, + 1478 + ], + [ + 1303, + 1490 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8664, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1283, + 1796 + ], + [ + 1323, + 1724 + ], + [ + 1288, + 1716 + ], + [ + 1250, + 1781 + ], + [ + 1283, + 1796 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116115, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1323, + 1724 + ], + [ + 1340, + 1692 + ], + [ + 1328, + 1676 + ], + [ + 1328, + 1662 + ], + [ + 1248, + 1645 + ], + [ + 1236, + 1704 + ], + [ + 1323, + 1724 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116118, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1328, + 1662 + ], + [ + 1342, + 1647 + ], + [ + 1333, + 1601 + ], + [ + 1261, + 1584 + ], + [ + 1248, + 1645 + ], + [ + 1328, + 1662 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116120, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1333, + 1601 + ], + [ + 1360, + 1554 + ], + [ + 1289, + 1512 + ], + [ + 1275, + 1518 + ], + [ + 1261, + 1584 + ], + [ + 1333, + 1601 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116069, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1299, + 1889 + ], + [ + 1192, + 1796 + ], + [ + 1244, + 1544 + ], + [ + 1104, + 1514 + ], + [ + 1082, + 1509 + ], + [ + 1100, + 1517 + ], + [ + 1219, + 1542 + ], + [ + 1207, + 1599 + ], + [ + 1196, + 1648 + ], + [ + 1195, + 1655 + ], + [ + 1187, + 1694 + ], + [ + 1177, + 1738 + ], + [ + 1164, + 1746 + ], + [ + 1152, + 1741 + ], + [ + 1097, + 1717 + ], + [ + 1037, + 1691 + ], + [ + 998, + 1675 + ], + [ + 938, + 1650 + ], + [ + 914, + 1639 + ], + [ + 881, + 1627 + ], + [ + 877, + 1626 + ], + [ + 872, + 1624 + ], + [ + 865, + 1622 + ], + [ + 859, + 1621 + ], + [ + 810, + 1611 + ], + [ + 759, + 1604 + ], + [ + 719, + 1598 + ], + [ + 678, + 1587 + ], + [ + 647, + 1575 + ], + [ + 619, + 1562 + ], + [ + 602, + 1552 + ], + [ + 568, + 1527 + ], + [ + 544, + 1505 + ], + [ + 526, + 1483 + ], + [ + 509, + 1456 + ], + [ + 493, + 1425 + ], + [ + 482, + 1383 + ], + [ + 439, + 1374 + ], + [ + 434, + 1375 + ], + [ + 395, + 1376 + ], + [ + 348, + 1371 + ], + [ + 401, + 1380 + ], + [ + 437, + 1483 + ], + [ + 471, + 1532 + ], + [ + 526, + 1589 + ], + [ + 578, + 1624 + ], + [ + 803, + 1723 + ], + [ + 860, + 1699 + ], + [ + 973, + 1747 + ], + [ + 1012, + 1764 + ], + [ + 1046, + 1778 + ], + [ + 1079, + 1792 + ], + [ + 1094, + 1799 + ], + [ + 1150, + 1823 + ], + [ + 1198, + 1843 + ], + [ + 1240, + 1862 + ], + [ + 1278, + 1879 + ], + [ + 1299, + 1889 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171558, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1329, + 1817 + ], + [ + 1389, + 1708 + ], + [ + 1364, + 1694 + ], + [ + 1340, + 1692 + ], + [ + 1283, + 1796 + ], + [ + 1329, + 1817 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116117, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 179, + 1925 + ], + [ + 220, + 1889 + ], + [ + 252, + 1771 + ], + [ + 465, + 1832 + ], + [ + 526, + 1589 + ], + [ + 471, + 1532 + ], + [ + 437, + 1483 + ], + [ + 401, + 1560 + ], + [ + 329, + 1535 + ], + [ + 223, + 1553 + ], + [ + 227, + 1487 + ], + [ + 116, + 1864 + ], + [ + 120, + 1871 + ], + [ + 179, + 1925 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64984, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1103, + 1934 + ], + [ + 1150, + 1823 + ], + [ + 1094, + 1799 + ], + [ + 1059, + 1901 + ], + [ + 1103, + 1934 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66887, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1147, + 1960 + ], + [ + 1103, + 1934 + ], + [ + 1059, + 1901 + ], + [ + 1116, + 1945 + ], + [ + 1147, + 1960 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171607, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1147, + 1960 + ], + [ + 1198, + 1843 + ], + [ + 1150, + 1823 + ], + [ + 1103, + 1934 + ], + [ + 1147, + 1960 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68328, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -64, + 1784 + ], + [ + -45, + 1755 + ], + [ + -64, + 1749 + ], + [ + -64, + 1784 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64391, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1187, + 1982 + ], + [ + 1240, + 1862 + ], + [ + 1198, + 1843 + ], + [ + 1147, + 1960 + ], + [ + 1164, + 1974 + ], + [ + 1187, + 1982 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68577, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1224, + 2000 + ], + [ + 1187, + 1982 + ], + [ + 1164, + 1974 + ], + [ + 1224, + 2000 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171618, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1224, + 2000 + ], + [ + 1278, + 1879 + ], + [ + 1240, + 1862 + ], + [ + 1187, + 1982 + ], + [ + 1224, + 2000 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68532, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1138, + 2013 + ], + [ + 1153, + 1963 + ], + [ + 1116, + 1945 + ], + [ + 1059, + 1901 + ], + [ + 1094, + 1799 + ], + [ + 1079, + 1792 + ], + [ + 1030, + 1938 + ], + [ + 1138, + 2013 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66938, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1260, + 2015 + ], + [ + 1224, + 2000 + ], + [ + 1243, + 2009 + ], + [ + 1260, + 2015 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171615, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1260, + 2015 + ], + [ + 1314, + 1896 + ], + [ + 1278, + 1879 + ], + [ + 1224, + 2000 + ], + [ + 1260, + 2015 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67928, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1366, + 1992 + ], + [ + 1391, + 1938 + ], + [ + 1351, + 1915 + ], + [ + 1325, + 1971 + ], + [ + 1366, + 1992 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68992, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1228, + 2047 + ], + [ + 1243, + 2009 + ], + [ + 1224, + 2000 + ], + [ + 1164, + 1974 + ], + [ + 1149, + 2023 + ], + [ + 1228, + 2047 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68497, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1125, + 2053 + ], + [ + 1138, + 2013 + ], + [ + 1030, + 1938 + ], + [ + 1079, + 1792 + ], + [ + 1046, + 1778 + ], + [ + 1033, + 1820 + ], + [ + 971, + 2007 + ], + [ + 1125, + 2053 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66310, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1298, + 2030 + ], + [ + 1351, + 1915 + ], + [ + 1314, + 1896 + ], + [ + 1260, + 2015 + ], + [ + 1298, + 2030 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68013, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 400, + 2086 + ], + [ + 465, + 1832 + ], + [ + 252, + 1771 + ], + [ + 220, + 1889 + ], + [ + 179, + 1925 + ], + [ + 116, + 1864 + ], + [ + 76, + 1820 + ], + [ + -45, + 1755 + ], + [ + -64, + 1784 + ], + [ + -64, + 1813 + ], + [ + 6, + 1880 + ], + [ + 94, + 1940 + ], + [ + 80, + 1995 + ], + [ + 400, + 2086 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63430, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1340, + 2047 + ], + [ + 1366, + 1992 + ], + [ + 1325, + 1971 + ], + [ + 1298, + 2030 + ], + [ + 1340, + 2047 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69063, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1355, + 2052 + ], + [ + 1379, + 1998 + ], + [ + 1366, + 1992 + ], + [ + 1340, + 2047 + ], + [ + 1355, + 2052 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69495, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1210, + 2102 + ], + [ + 1243, + 2009 + ], + [ + 1228, + 2047 + ], + [ + 1210, + 2102 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171612, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1210, + 2102 + ], + [ + 1228, + 2047 + ], + [ + 1149, + 2023 + ], + [ + 1133, + 2080 + ], + [ + 1210, + 2102 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70547, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1208, + 2108 + ], + [ + 1210, + 2102 + ], + [ + 1133, + 2080 + ], + [ + 1131, + 2086 + ], + [ + 1208, + 2108 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70184, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1239, + 2111 + ], + [ + 1270, + 2019 + ], + [ + 1260, + 2015 + ], + [ + 1243, + 2009 + ], + [ + 1210, + 2102 + ], + [ + 1239, + 2111 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69136, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1206, + 2114 + ], + [ + 1208, + 2108 + ], + [ + 1131, + 2086 + ], + [ + 1128, + 2092 + ], + [ + 1206, + 2114 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70725, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1322, + 2085 + ], + [ + 1340, + 2047 + ], + [ + 1298, + 2030 + ], + [ + 1270, + 2019 + ], + [ + 1256, + 2061 + ], + [ + 1322, + 2085 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69933, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1104, + 2118 + ], + [ + 1125, + 2053 + ], + [ + 971, + 2007 + ], + [ + 950, + 2072 + ], + [ + 1104, + 2118 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66370, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1237, + 2117 + ], + [ + 1239, + 2111 + ], + [ + 1210, + 2102 + ], + [ + 1208, + 2108 + ], + [ + 1237, + 2117 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70129, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 372, + 2125 + ], + [ + 398, + 2094 + ], + [ + 400, + 2086 + ], + [ + 372, + 2125 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171438, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1338, + 2090 + ], + [ + 1355, + 2052 + ], + [ + 1340, + 2047 + ], + [ + 1322, + 2085 + ], + [ + 1338, + 2090 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69547, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1271, + 2127 + ], + [ + 1273, + 2121 + ], + [ + 1239, + 2111 + ], + [ + 1237, + 2117 + ], + [ + 1271, + 2127 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70050, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1273, + 2121 + ], + [ + 1288, + 2073 + ], + [ + 1256, + 2061 + ], + [ + 1239, + 2111 + ], + [ + 1273, + 2121 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70064, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1353, + 2091 + ], + [ + 1369, + 2058 + ], + [ + 1355, + 2052 + ], + [ + 1340, + 2084 + ], + [ + 1353, + 2091 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69877, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1303, + 2129 + ], + [ + 1322, + 2085 + ], + [ + 1288, + 2073 + ], + [ + 1273, + 2121 + ], + [ + 1303, + 2129 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69975, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1191, + 2157 + ], + [ + 1206, + 2114 + ], + [ + 1128, + 2092 + ], + [ + 1115, + 2135 + ], + [ + 1191, + 2157 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70606, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1193, + 2153 + ], + [ + 1192, + 2155 + ], + [ + 1223, + 2163 + ], + [ + 1193, + 2153 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171439, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1337, + 2126 + ], + [ + 1353, + 2091 + ], + [ + 1340, + 2084 + ], + [ + 1323, + 2120 + ], + [ + 1337, + 2126 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69388, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1314, + 2139 + ], + [ + 1338, + 2090 + ], + [ + 1322, + 2085 + ], + [ + 1303, + 2129 + ], + [ + 1273, + 2121 + ], + [ + 1271, + 2127 + ], + [ + 1314, + 2139 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69618, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1323, + 2120 + ], + [ + 1338, + 2090 + ], + [ + 1340, + 2084 + ], + [ + 1323, + 2120 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171435, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1084, + 2184 + ], + [ + 1104, + 2118 + ], + [ + 950, + 2072 + ], + [ + 928, + 2138 + ], + [ + 1084, + 2184 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64736, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1278, + 2181 + ], + [ + 1297, + 2141 + ], + [ + 1206, + 2114 + ], + [ + 1193, + 2153 + ], + [ + 1278, + 2181 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70663, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1319, + 2163 + ], + [ + 1337, + 2126 + ], + [ + 1323, + 2120 + ], + [ + 1306, + 2157 + ], + [ + 1319, + 2163 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69338, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1211, + 2200 + ], + [ + 1212, + 2198 + ], + [ + 1183, + 2189 + ], + [ + 1211, + 2200 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171449, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 346, + 2200 + ], + [ + 346, + 2190 + ], + [ + 322, + 2189 + ], + [ + 330, + 2161 + ], + [ + 363, + 2171 + ], + [ + 372, + 2125 + ], + [ + 400, + 2086 + ], + [ + 80, + 1995 + ], + [ + 94, + 1940 + ], + [ + 6, + 1880 + ], + [ + -64, + 1813 + ], + [ + -64, + 2034 + ], + [ + -39, + 2043 + ], + [ + -32, + 2015 + ], + [ + 82, + 2059 + ], + [ + 134, + 2117 + ], + [ + 193, + 2131 + ], + [ + 186, + 2149 + ], + [ + 346, + 2200 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63529, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1178, + 2203 + ], + [ + 1183, + 2189 + ], + [ + 1212, + 2198 + ], + [ + 1223, + 2163 + ], + [ + 1115, + 2135 + ], + [ + 1101, + 2178 + ], + [ + 1178, + 2203 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70353, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1292, + 2186 + ], + [ + 1314, + 2139 + ], + [ + 1208, + 2108 + ], + [ + 1206, + 2114 + ], + [ + 1297, + 2141 + ], + [ + 1278, + 2181 + ], + [ + 1292, + 2186 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70778, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 279, + 2224 + ], + [ + -57, + 2120 + ], + [ + 43, + 2153 + ], + [ + 279, + 2224 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154440, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1260, + 2219 + ], + [ + 1278, + 2181 + ], + [ + 1223, + 2163 + ], + [ + 1211, + 2201 + ], + [ + 1260, + 2219 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71145, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 738, + 2225 + ], + [ + 876, + 1767 + ], + [ + 846, + 1747 + ], + [ + 708, + 2219 + ], + [ + 738, + 2225 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 64007, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1301, + 2202 + ], + [ + 1319, + 2163 + ], + [ + 1306, + 2157 + ], + [ + 1288, + 2196 + ], + [ + 1301, + 2202 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69286, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 760, + 2229 + ], + [ + 897, + 1783 + ], + [ + 876, + 1767 + ], + [ + 738, + 2225 + ], + [ + 760, + 2229 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 63919, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1275, + 2224 + ], + [ + 1292, + 2186 + ], + [ + 1278, + 2181 + ], + [ + 1260, + 2219 + ], + [ + 1275, + 2224 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70837, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 476, + 4084 + ], + [ + 924, + 4040 + ], + [ + 922, + 4016 + ], + [ + 471, + 4059 + ], + [ + 476, + 4084 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 70371, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 392, + 4066 + ], + [ + 471, + 4059 + ], + [ + 440, + 3911 + ], + [ + 392, + 4066 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73498, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3504, + 3010 + ], + [ + 3541, + 3009 + ], + [ + 3574, + 2925 + ], + [ + 3541, + 2913 + ], + [ + 3504, + 3010 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116652, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3595, + 2800 + ], + [ + 3652, + 2648 + ], + [ + 3487, + 2582 + ], + [ + 3428, + 2736 + ], + [ + 3595, + 2800 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116374, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3555, + 2599 + ], + [ + 3560, + 2590 + ], + [ + 3529, + 2578 + ], + [ + 3525, + 2587 + ], + [ + 3555, + 2599 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116663, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3534, + 2932 + ], + [ + 3541, + 2913 + ], + [ + 3563, + 2853 + ], + [ + 3530, + 2841 + ], + [ + 3500, + 2920 + ], + [ + 3534, + 2932 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116651, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3486, + 2572 + ], + [ + 3578, + 2386 + ], + [ + 3545, + 2370 + ], + [ + 3541, + 2367 + ], + [ + 3447, + 2556 + ], + [ + 3486, + 2572 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116383, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3465, + 3011 + ], + [ + 3504, + 3010 + ], + [ + 3534, + 2932 + ], + [ + 3500, + 2920 + ], + [ + 3465, + 3011 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115436, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3426, + 3012 + ], + [ + 3465, + 3011 + ], + [ + 3497, + 2930 + ], + [ + 3463, + 2915 + ], + [ + 3426, + 3012 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115439, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3447, + 2556 + ], + [ + 3541, + 2367 + ], + [ + 3504, + 2350 + ], + [ + 3410, + 2541 + ], + [ + 3447, + 2556 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116382, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3497, + 2930 + ], + [ + 3530, + 2841 + ], + [ + 3496, + 2828 + ], + [ + 3466, + 2908 + ], + [ + 3463, + 2915 + ], + [ + 3497, + 2930 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116653, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3504, + 2350 + ], + [ + 3540, + 2279 + ], + [ + 3503, + 2260 + ], + [ + 3468, + 2331 + ], + [ + 3504, + 2350 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116423, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3442, + 2312 + ], + [ + 3566, + 2062 + ], + [ + 3550, + 2044 + ], + [ + 3422, + 2301 + ], + [ + 3442, + 2312 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116327, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3422, + 2301 + ], + [ + 3432, + 2281 + ], + [ + 3550, + 2044 + ], + [ + 3522, + 2011 + ], + [ + 3386, + 2283 + ], + [ + 3422, + 2301 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116306, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3464, + 2111 + ], + [ + 3473, + 2108 + ], + [ + 3522, + 2011 + ], + [ + 3494, + 1986 + ], + [ + 3437, + 2097 + ], + [ + 3464, + 2111 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116350, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3494, + 1986 + ], + [ + 3496, + 1981 + ], + [ + 3458, + 1953 + ], + [ + 3468, + 1962 + ], + [ + 3494, + 1986 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171620, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3496, + 1981 + ], + [ + 3466, + 1947 + ], + [ + 3458, + 1953 + ], + [ + 3496, + 1981 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116351, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3538, + 1837 + ], + [ + 3560, + 1806 + ], + [ + 3498, + 1761 + ], + [ + 3467, + 1804 + ], + [ + 3538, + 1837 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116984, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3522, + 2011 + ], + [ + 3496, + 1981 + ], + [ + 3494, + 1986 + ], + [ + 3522, + 2011 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116426, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3490, + 2286 + ], + [ + 3588, + 2088 + ], + [ + 3566, + 2062 + ], + [ + 3462, + 2272 + ], + [ + 3490, + 2286 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116349, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3535, + 2276 + ], + [ + 3575, + 2195 + ], + [ + 3543, + 2180 + ], + [ + 3503, + 2260 + ], + [ + 3535, + 2276 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116422, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3560, + 1806 + ], + [ + 3581, + 1777 + ], + [ + 3518, + 1733 + ], + [ + 3498, + 1761 + ], + [ + 3560, + 1806 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116983, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3345, + 1714 + ], + [ + 3725, + 1221 + ], + [ + 4097, + 804 + ], + [ + 4160, + 723 + ], + [ + 4160, + 407 + ], + [ + 3896, + 199 + ], + [ + 3714, + 388 + ], + [ + 3586, + 262 + ], + [ + 3476, + 363 + ], + [ + 3389, + 299 + ], + [ + 2685, + 996 + ], + [ + 2695, + 1008 + ], + [ + 2759, + 945 + ], + [ + 2828, + 1030 + ], + [ + 2766, + 1094 + ], + [ + 3011, + 1391 + ], + [ + 3150, + 1527 + ], + [ + 3162, + 1514 + ], + [ + 3180, + 1514 + ], + [ + 3217, + 1549 + ], + [ + 3216, + 1568 + ], + [ + 3205, + 1580 + ], + [ + 3345, + 1714 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116162, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3364, + 2237 + ], + [ + 3382, + 2203 + ], + [ + 3389, + 2188 + ], + [ + 3364, + 2237 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171443, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3384, + 2376 + ], + [ + 3422, + 2301 + ], + [ + 3386, + 2283 + ], + [ + 3348, + 2358 + ], + [ + 3384, + 2376 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116403, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3391, + 1998 + ], + [ + 3406, + 1969 + ], + [ + 3429, + 1981 + ], + [ + 3458, + 1953 + ], + [ + 3391, + 1892 + ], + [ + 3358, + 1898 + ], + [ + 3323, + 1962 + ], + [ + 3391, + 1998 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116331, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3386, + 2283 + ], + [ + 3473, + 2108 + ], + [ + 3464, + 2111 + ], + [ + 3437, + 2097 + ], + [ + 3349, + 2265 + ], + [ + 3386, + 2283 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116328, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3384, + 2109 + ], + [ + 3445, + 1992 + ], + [ + 3468, + 1962 + ], + [ + 3458, + 1953 + ], + [ + 3429, + 1981 + ], + [ + 3406, + 1969 + ], + [ + 3345, + 2087 + ], + [ + 3384, + 2109 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116346, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3458, + 1953 + ], + [ + 3466, + 1947 + ], + [ + 3383, + 1850 + ], + [ + 3358, + 1898 + ], + [ + 3391, + 1892 + ], + [ + 3458, + 1953 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116344, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3468, + 1803 + ], + [ + 3431, + 1786 + ], + [ + 3345, + 1714 + ], + [ + 3397, + 1773 + ], + [ + 3468, + 1803 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116969, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3421, + 2128 + ], + [ + 3494, + 1986 + ], + [ + 3468, + 1962 + ], + [ + 3445, + 1992 + ], + [ + 3384, + 2109 + ], + [ + 3421, + 2128 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116345, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3436, + 2396 + ], + [ + 3490, + 2286 + ], + [ + 3462, + 2272 + ], + [ + 3408, + 2382 + ], + [ + 3436, + 2396 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116394, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3405, + 2387 + ], + [ + 3442, + 2312 + ], + [ + 3422, + 2301 + ], + [ + 3384, + 2376 + ], + [ + 3405, + 2387 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116401, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3428, + 2736 + ], + [ + 3487, + 2582 + ], + [ + 3415, + 2554 + ], + [ + 3357, + 2709 + ], + [ + 3428, + 2736 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116373, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3369, + 3013 + ], + [ + 3426, + 3012 + ], + [ + 3466, + 2908 + ], + [ + 3416, + 2890 + ], + [ + 3369, + 3013 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116638, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3410, + 2541 + ], + [ + 3504, + 2350 + ], + [ + 3468, + 2331 + ], + [ + 3372, + 2526 + ], + [ + 3410, + 2541 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116381, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3466, + 2908 + ], + [ + 3496, + 2828 + ], + [ + 3447, + 2809 + ], + [ + 3416, + 2890 + ], + [ + 3466, + 2908 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116654, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3408, + 2911 + ], + [ + 3447, + 2809 + ], + [ + 3399, + 2791 + ], + [ + 3361, + 2892 + ], + [ + 3408, + 2911 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116639, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3372, + 2526 + ], + [ + 3436, + 2396 + ], + [ + 3408, + 2382 + ], + [ + 3341, + 2514 + ], + [ + 3372, + 2526 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116395, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3324, + 3014 + ], + [ + 3369, + 3013 + ], + [ + 3384, + 2976 + ], + [ + 3344, + 2961 + ], + [ + 3324, + 3014 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115403, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3314, + 3015 + ], + [ + 3324, + 3014 + ], + [ + 3344, + 2961 + ], + [ + 3384, + 2976 + ], + [ + 3408, + 2911 + ], + [ + 3361, + 2892 + ], + [ + 3314, + 3015 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116647, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3357, + 2709 + ], + [ + 3415, + 2555 + ], + [ + 3331, + 2522 + ], + [ + 3273, + 2677 + ], + [ + 3357, + 2709 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116375, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3344, + 2510 + ], + [ + 3405, + 2387 + ], + [ + 3336, + 2352 + ], + [ + 3271, + 2484 + ], + [ + 3344, + 2510 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116398, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3314, + 3015 + ], + [ + 3399, + 2791 + ], + [ + 3258, + 2737 + ], + [ + 3168, + 3012 + ], + [ + 3314, + 3015 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116326, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3273, + 2677 + ], + [ + 3332, + 2520 + ], + [ + 3284, + 2502 + ], + [ + 3225, + 2659 + ], + [ + 3273, + 2677 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116376, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3271, + 2484 + ], + [ + 3336, + 2352 + ], + [ + 3311, + 2339 + ], + [ + 3299, + 2364 + ], + [ + 3242, + 2474 + ], + [ + 3271, + 2484 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116399, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3382, + 2203 + ], + [ + 3400, + 2167 + ], + [ + 3255, + 2088 + ], + [ + 3236, + 2124 + ], + [ + 3382, + 2203 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116407, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3364, + 2237 + ], + [ + 3382, + 2203 + ], + [ + 3236, + 2124 + ], + [ + 3217, + 2158 + ], + [ + 3364, + 2237 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116406, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3347, + 2271 + ], + [ + 3349, + 2265 + ], + [ + 3364, + 2237 + ], + [ + 3217, + 2158 + ], + [ + 3199, + 2192 + ], + [ + 3347, + 2271 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116405, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3345, + 2087 + ], + [ + 3391, + 1998 + ], + [ + 3323, + 1962 + ], + [ + 3276, + 2050 + ], + [ + 3345, + 2087 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116330, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3400, + 2167 + ], + [ + 3421, + 2128 + ], + [ + 3276, + 2050 + ], + [ + 3255, + 2088 + ], + [ + 3400, + 2167 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116329, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3348, + 2358 + ], + [ + 3386, + 2283 + ], + [ + 3349, + 2265 + ], + [ + 3311, + 2339 + ], + [ + 3348, + 2358 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116404, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3237, + 2382 + ], + [ + 3256, + 2346 + ], + [ + 3147, + 2288 + ], + [ + 3128, + 2324 + ], + [ + 3206, + 2366 + ], + [ + 3237, + 2382 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116396, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3174, + 2030 + ], + [ + 3197, + 2022 + ], + [ + 3269, + 1889 + ], + [ + 3141, + 1932 + ], + [ + 3174, + 2030 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116145, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3088, + 2229 + ], + [ + 3181, + 2150 + ], + [ + 3336, + 1860 + ], + [ + 3290, + 1804 + ], + [ + 3296, + 1839 + ], + [ + 3269, + 1889 + ], + [ + 3197, + 2022 + ], + [ + 3088, + 2229 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221181, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3278, + 2404 + ], + [ + 3299, + 2364 + ], + [ + 3150, + 2284 + ], + [ + 3147, + 2288 + ], + [ + 3256, + 2346 + ], + [ + 3237, + 2382 + ], + [ + 3278, + 2404 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116397, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3299, + 2364 + ], + [ + 3312, + 2337 + ], + [ + 3164, + 2258 + ], + [ + 3150, + 2284 + ], + [ + 3299, + 2364 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116370, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3323, + 1832 + ], + [ + 3336, + 1807 + ], + [ + 3335, + 1793 + ], + [ + 3219, + 1676 + ], + [ + 3198, + 1713 + ], + [ + 3323, + 1832 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116144, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3325, + 2312 + ], + [ + 3347, + 2271 + ], + [ + 3199, + 2192 + ], + [ + 3178, + 2232 + ], + [ + 3325, + 2312 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116402, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3312, + 2337 + ], + [ + 3325, + 2312 + ], + [ + 3178, + 2232 + ], + [ + 3164, + 2258 + ], + [ + 3312, + 2337 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116400, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3242, + 2474 + ], + [ + 3278, + 2405 + ], + [ + 3242, + 2385 + ], + [ + 3204, + 2460 + ], + [ + 3242, + 2474 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116371, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3225, + 2659 + ], + [ + 3284, + 2502 + ], + [ + 3236, + 2484 + ], + [ + 3177, + 2641 + ], + [ + 3225, + 2659 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116377, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3204, + 2460 + ], + [ + 3242, + 2385 + ], + [ + 3206, + 2366 + ], + [ + 3175, + 2431 + ], + [ + 3173, + 2449 + ], + [ + 3204, + 2460 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116372, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3177, + 2641 + ], + [ + 3236, + 2484 + ], + [ + 3208, + 2474 + ], + [ + 3147, + 2629 + ], + [ + 3177, + 2641 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116378, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3178, + 2551 + ], + [ + 3208, + 2474 + ], + [ + 3165, + 2459 + ], + [ + 3135, + 2535 + ], + [ + 3178, + 2551 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116379, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3140, + 2897 + ], + [ + 3146, + 2877 + ], + [ + 3184, + 2891 + ], + [ + 3207, + 2826 + ], + [ + 3135, + 2799 + ], + [ + 3106, + 2886 + ], + [ + 3140, + 2897 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116644, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3207, + 2826 + ], + [ + 3239, + 2730 + ], + [ + 3120, + 2684 + ], + [ + 3084, + 2780 + ], + [ + 3207, + 2826 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116634, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3147, + 2629 + ], + [ + 3178, + 2551 + ], + [ + 3135, + 2535 + ], + [ + 3108, + 2606 + ], + [ + 3147, + 2629 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116640, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3137, + 3002 + ], + [ + 3151, + 2996 + ], + [ + 3184, + 2891 + ], + [ + 3146, + 2877 + ], + [ + 3140, + 2897 + ], + [ + 3109, + 2989 + ], + [ + 3137, + 3002 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116642, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3109, + 2989 + ], + [ + 3140, + 2897 + ], + [ + 3106, + 2886 + ], + [ + 3079, + 2969 + ], + [ + 3109, + 2989 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116643, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3108, + 2606 + ], + [ + 3141, + 2519 + ], + [ + 3103, + 2505 + ], + [ + 3077, + 2573 + ], + [ + 3108, + 2606 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116641, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3141, + 2519 + ], + [ + 3165, + 2459 + ], + [ + 3126, + 2445 + ], + [ + 3103, + 2505 + ], + [ + 3141, + 2519 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116380, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3173, + 2449 + ], + [ + 3175, + 2431 + ], + [ + 3206, + 2366 + ], + [ + 3128, + 2324 + ], + [ + 3079, + 2415 + ], + [ + 3173, + 2449 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116368, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3198, + 1713 + ], + [ + 3219, + 1676 + ], + [ + 3187, + 1646 + ], + [ + 3128, + 1646 + ], + [ + 3198, + 1713 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116143, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3091, + 595 + ], + [ + 3132, + 554 + ], + [ + 3051, + 472 + ], + [ + 3009, + 514 + ], + [ + 3091, + 595 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116716, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3049, + 637 + ], + [ + 3091, + 595 + ], + [ + 3009, + 514 + ], + [ + 2967, + 556 + ], + [ + 3049, + 637 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116715, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3102, + 1629 + ], + [ + 3128, + 1646 + ], + [ + 3158, + 1646 + ], + [ + 3085, + 1559 + ], + [ + 3081, + 1579 + ], + [ + 3087, + 1608 + ], + [ + 2941, + 1463 + ], + [ + 3102, + 1629 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221304, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3069, + 2765 + ], + [ + 3088, + 2714 + ], + [ + 3070, + 2708 + ], + [ + 3051, + 2758 + ], + [ + 3069, + 2765 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116646, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3077, + 2573 + ], + [ + 3126, + 2445 + ], + [ + 3073, + 2427 + ], + [ + 3063, + 2447 + ], + [ + 3053, + 2501 + ], + [ + 3060, + 2539 + ], + [ + 3077, + 2573 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116369, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3087, + 2771 + ], + [ + 3107, + 2719 + ], + [ + 3088, + 2714 + ], + [ + 3069, + 2765 + ], + [ + 3087, + 2771 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116645, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3079, + 2969 + ], + [ + 3135, + 2799 + ], + [ + 3084, + 2780 + ], + [ + 3028, + 2930 + ], + [ + 3079, + 2969 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116592, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3107, + 2719 + ], + [ + 3120, + 2684 + ], + [ + 3113, + 2680 + ], + [ + 3105, + 2703 + ], + [ + 3101, + 2711 + ], + [ + 3030, + 2685 + ], + [ + 3027, + 2693 + ], + [ + 3101, + 2719 + ], + [ + 3107, + 2719 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116637, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3028, + 2930 + ], + [ + 3084, + 2780 + ], + [ + 3087, + 2771 + ], + [ + 3051, + 2758 + ], + [ + 2994, + 2904 + ], + [ + 3028, + 2930 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116600, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3051, + 2758 + ], + [ + 3070, + 2708 + ], + [ + 3027, + 2693 + ], + [ + 3006, + 2749 + ], + [ + 3051, + 2758 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116636, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3105, + 2703 + ], + [ + 3113, + 2680 + ], + [ + 3065, + 2651 + ], + [ + 3034, + 2620 + ], + [ + 2999, + 2548 + ], + [ + 2996, + 2492 + ], + [ + 2971, + 2479 + ], + [ + 2974, + 2538 + ], + [ + 2965, + 2552 + ], + [ + 2834, + 2553 + ], + [ + 2755, + 2527 + ], + [ + 2736, + 2562 + ], + [ + 2792, + 2585 + ], + [ + 2854, + 2595 + ], + [ + 2989, + 2591 + ], + [ + 3004, + 2609 + ], + [ + 3027, + 2645 + ], + [ + 3074, + 2685 + ], + [ + 3105, + 2703 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116325, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2902, + 2558 + ], + [ + 2969, + 2549 + ], + [ + 2974, + 2538 + ], + [ + 2970, + 2486 + ], + [ + 2990, + 2412 + ], + [ + 3197, + 2022 + ], + [ + 3174, + 2030 + ], + [ + 3141, + 1932 + ], + [ + 3269, + 1889 + ], + [ + 3296, + 1839 + ], + [ + 3289, + 1799 + ], + [ + 3128, + 1646 + ], + [ + 3102, + 1629 + ], + [ + 2941, + 1463 + ], + [ + 2845, + 1349 + ], + [ + 2604, + 1429 + ], + [ + 2565, + 1456 + ], + [ + 2537, + 1500 + ], + [ + 2530, + 1532 + ], + [ + 2534, + 1576 + ], + [ + 2586, + 1734 + ], + [ + 2670, + 1706 + ], + [ + 2759, + 1969 + ], + [ + 2713, + 1985 + ], + [ + 2689, + 2099 + ], + [ + 2662, + 2151 + ], + [ + 2608, + 2218 + ], + [ + 2591, + 2273 + ], + [ + 2593, + 2318 + ], + [ + 2615, + 2382 + ], + [ + 2650, + 2439 + ], + [ + 2694, + 2487 + ], + [ + 2749, + 2524 + ], + [ + 2814, + 2549 + ], + [ + 2902, + 2558 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116003, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3087, + 1608 + ], + [ + 3081, + 1579 + ], + [ + 3086, + 1551 + ], + [ + 2968, + 1433 + ], + [ + 2886, + 1335 + ], + [ + 2845, + 1349 + ], + [ + 2941, + 1463 + ], + [ + 3087, + 1608 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116017, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2957, + 2874 + ], + [ + 3030, + 2685 + ], + [ + 3101, + 2711 + ], + [ + 3105, + 2703 + ], + [ + 3043, + 2661 + ], + [ + 3004, + 2609 + ], + [ + 2851, + 2606 + ], + [ + 2791, + 2592 + ], + [ + 2733, + 2567 + ], + [ + 2683, + 2659 + ], + [ + 2701, + 2668 + ], + [ + 2697, + 2836 + ], + [ + 2766, + 2809 + ], + [ + 2832, + 2807 + ], + [ + 2889, + 2825 + ], + [ + 2957, + 2874 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116322, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3190, + 360 + ], + [ + 3226, + 322 + ], + [ + 3205, + 303 + ], + [ + 3171, + 340 + ], + [ + 3177, + 346 + ], + [ + 3190, + 360 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116723, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3476, + 363 + ], + [ + 3497, + 343 + ], + [ + 3567, + 223 + ], + [ + 3537, + 206 + ], + [ + 3456, + 348 + ], + [ + 3476, + 363 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116292, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3038, + 368 + ], + [ + 3098, + 306 + ], + [ + 3018, + 270 + ], + [ + 3012, + 267 + ], + [ + 3018, + 259 + ], + [ + 3009, + 255 + ], + [ + 2957, + 331 + ], + [ + 3038, + 368 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116237, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3312, + 376 + ], + [ + 3389, + 299 + ], + [ + 3326, + 256 + ], + [ + 3234, + 351 + ], + [ + 3239, + 355 + ], + [ + 3266, + 328 + ], + [ + 3312, + 376 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116290, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3208, + 378 + ], + [ + 3326, + 256 + ], + [ + 3302, + 240 + ], + [ + 3190, + 360 + ], + [ + 3208, + 378 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116289, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3208, + 378 + ], + [ + 3237, + 353 + ], + [ + 3235, + 351 + ], + [ + 3208, + 378 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171459, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3113, + 410 + ], + [ + 3177, + 346 + ], + [ + 3098, + 306 + ], + [ + 3054, + 351 + ], + [ + 3113, + 410 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116239, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3259, + 429 + ], + [ + 3312, + 376 + ], + [ + 3266, + 328 + ], + [ + 3208, + 378 + ], + [ + 3259, + 429 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116722, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3227, + 460 + ], + [ + 3259, + 429 + ], + [ + 3177, + 346 + ], + [ + 3146, + 378 + ], + [ + 3227, + 460 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116721, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3195, + 492 + ], + [ + 3227, + 460 + ], + [ + 3146, + 378 + ], + [ + 3113, + 410 + ], + [ + 3195, + 492 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116718, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3030, + 492 + ], + [ + 3113, + 410 + ], + [ + 3054, + 351 + ], + [ + 2961, + 444 + ], + [ + 3030, + 492 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116236, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3132, + 554 + ], + [ + 3195, + 492 + ], + [ + 3113, + 410 + ], + [ + 3051, + 472 + ], + [ + 3132, + 554 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116717, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3577, + 3274 + ], + [ + 3572, + 3077 + ], + [ + 3541, + 3078 + ], + [ + 3536, + 3071 + ], + [ + 3542, + 3261 + ], + [ + 3577, + 3274 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115965, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3544, + 3464 + ], + [ + 3621, + 3289 + ], + [ + 3607, + 3284 + ], + [ + 3521, + 3452 + ], + [ + 3544, + 3464 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115959, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3561, + 3473 + ], + [ + 3634, + 3294 + ], + [ + 3621, + 3289 + ], + [ + 3544, + 3464 + ], + [ + 3561, + 3473 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115957, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3610, + 3286 + ], + [ + 3610, + 3226 + ], + [ + 3608, + 3077 + ], + [ + 3572, + 3077 + ], + [ + 3577, + 3274 + ], + [ + 3610, + 3286 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115961, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3580, + 3482 + ], + [ + 3647, + 3299 + ], + [ + 3634, + 3294 + ], + [ + 3561, + 3473 + ], + [ + 3580, + 3482 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115943, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3621, + 3289 + ], + [ + 3607, + 3284 + ], + [ + 3590, + 3278 + ], + [ + 3610, + 3286 + ], + [ + 3621, + 3289 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170277, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3632, + 3195 + ], + [ + 3636, + 3081 + ], + [ + 3608, + 3079 + ], + [ + 3609, + 3195 + ], + [ + 3632, + 3195 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115960, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3610, + 3226 + ], + [ + 3632, + 3225 + ], + [ + 3632, + 3195 + ], + [ + 3609, + 3195 + ], + [ + 3610, + 3226 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115955, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3634, + 3294 + ], + [ + 3637, + 3246 + ], + [ + 3631, + 3246 + ], + [ + 3632, + 3225 + ], + [ + 3610, + 3226 + ], + [ + 3610, + 3286 + ], + [ + 3634, + 3294 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115958, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3598, + 3492 + ], + [ + 3667, + 3305 + ], + [ + 3647, + 3299 + ], + [ + 3580, + 3482 + ], + [ + 3598, + 3492 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115940, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3640, + 3247 + ], + [ + 3637, + 3246 + ], + [ + 3631, + 3246 + ], + [ + 3640, + 3247 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170294, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3641, + 3247 + ], + [ + 3647, + 3082 + ], + [ + 3636, + 3081 + ], + [ + 3631, + 3246 + ], + [ + 3641, + 3247 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115954, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3632, + 3213 + ], + [ + 3636, + 3081 + ], + [ + 3632, + 3195 + ], + [ + 3632, + 3213 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170591, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3617, + 3500 + ], + [ + 3687, + 3313 + ], + [ + 3667, + 3305 + ], + [ + 3598, + 3492 + ], + [ + 3617, + 3500 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115939, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3659, + 3303 + ], + [ + 3661, + 3248 + ], + [ + 3637, + 3246 + ], + [ + 3634, + 3294 + ], + [ + 3647, + 3299 + ], + [ + 3659, + 3303 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115956, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3636, + 3507 + ], + [ + 3706, + 3319 + ], + [ + 3687, + 3313 + ], + [ + 3617, + 3500 + ], + [ + 3636, + 3507 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115937, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3661, + 3248 + ], + [ + 3664, + 3175 + ], + [ + 3668, + 3083 + ], + [ + 3647, + 3082 + ], + [ + 3641, + 3247 + ], + [ + 3661, + 3248 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115941, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3681, + 3242 + ], + [ + 3684, + 3176 + ], + [ + 3664, + 3175 + ], + [ + 3661, + 3241 + ], + [ + 3681, + 3242 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115938, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3678, + 3310 + ], + [ + 3681, + 3242 + ], + [ + 3661, + 3241 + ], + [ + 3659, + 3303 + ], + [ + 3678, + 3310 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115942, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3655, + 3514 + ], + [ + 3725, + 3326 + ], + [ + 3706, + 3319 + ], + [ + 3636, + 3507 + ], + [ + 3655, + 3514 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115935, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3684, + 3311 + ], + [ + 3693, + 3085 + ], + [ + 3688, + 3084 + ], + [ + 3678, + 3310 + ], + [ + 3684, + 3311 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115994, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3684, + 3176 + ], + [ + 3688, + 3084 + ], + [ + 3668, + 3083 + ], + [ + 3664, + 3175 + ], + [ + 3684, + 3176 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115936, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3689, + 3313 + ], + [ + 3697, + 3086 + ], + [ + 3693, + 3085 + ], + [ + 3684, + 3311 + ], + [ + 3689, + 3313 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115993, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3703, + 3532 + ], + [ + 3739, + 3437 + ], + [ + 3690, + 3419 + ], + [ + 3655, + 3514 + ], + [ + 3703, + 3532 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116002, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3711, + 3321 + ], + [ + 3731, + 3092 + ], + [ + 3697, + 3086 + ], + [ + 3689, + 3313 + ], + [ + 3711, + 3321 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115934, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3816, + 3323 + ], + [ + 3876, + 3121 + ], + [ + 3821, + 3110 + ], + [ + 3781, + 3312 + ], + [ + 3816, + 3323 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115996, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3808, + 3561 + ], + [ + 3904, + 3345 + ], + [ + 3816, + 3323 + ], + [ + 3783, + 3312 + ], + [ + 3768, + 3381 + ], + [ + 3710, + 3535 + ], + [ + 3808, + 3561 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115983, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3774, + 3345 + ], + [ + 3783, + 3312 + ], + [ + 3821, + 3110 + ], + [ + 3796, + 3105 + ], + [ + 3755, + 3337 + ], + [ + 3774, + 3345 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115995, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3755, + 3337 + ], + [ + 3796, + 3105 + ], + [ + 3773, + 3100 + ], + [ + 3736, + 3331 + ], + [ + 3755, + 3337 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115992, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3768, + 3381 + ], + [ + 3783, + 3312 + ], + [ + 3774, + 3345 + ], + [ + 3768, + 3381 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170273, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3774, + 3345 + ], + [ + 3755, + 3337 + ], + [ + 3736, + 3331 + ], + [ + 3774, + 3345 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170258, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3736, + 3331 + ], + [ + 3773, + 3100 + ], + [ + 3731, + 3092 + ], + [ + 3711, + 3321 + ], + [ + 3736, + 3331 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115933, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3710, + 3535 + ], + [ + 3768, + 3381 + ], + [ + 3774, + 3345 + ], + [ + 3736, + 3331 + ], + [ + 3725, + 3326 + ], + [ + 3690, + 3419 + ], + [ + 3739, + 3437 + ], + [ + 3703, + 3532 + ], + [ + 3710, + 3535 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115984, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3732, + 3847 + ], + [ + 3760, + 3783 + ], + [ + 3755, + 3781 + ], + [ + 3727, + 3845 + ], + [ + 3732, + 3847 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83771, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3760, + 3783 + ], + [ + 3775, + 3749 + ], + [ + 3758, + 3782 + ], + [ + 3760, + 3783 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170377, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3759, + 3743 + ], + [ + 3774, + 3709 + ], + [ + 3769, + 3707 + ], + [ + 3774, + 3697 + ], + [ + 3748, + 3685 + ], + [ + 3728, + 3730 + ], + [ + 3759, + 3743 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79155, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3775, + 3702 + ], + [ + 3805, + 3640 + ], + [ + 3771, + 3632 + ], + [ + 3748, + 3685 + ], + [ + 3775, + 3702 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79027, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3774, + 3709 + ], + [ + 3782, + 3692 + ], + [ + 3772, + 3701 + ], + [ + 3769, + 3707 + ], + [ + 3774, + 3709 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79085, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3822, + 4114 + ], + [ + 3864, + 4017 + ], + [ + 3733, + 3959 + ], + [ + 3691, + 4061 + ], + [ + 3822, + 4114 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83595, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3708, + 4160 + ], + [ + 3805, + 4160 + ], + [ + 3576, + 4078 + ], + [ + 3407, + 4012 + ], + [ + 3396, + 3986 + ], + [ + 3509, + 3987 + ], + [ + 3506, + 3986 + ], + [ + 3421, + 3951 + ], + [ + 3294, + 3900 + ], + [ + 3394, + 4042 + ], + [ + 3388, + 4040 + ], + [ + 3458, + 4160 + ], + [ + 3528, + 4160 + ], + [ + 3490, + 4093 + ], + [ + 3500, + 4081 + ], + [ + 3677, + 4148 + ], + [ + 3708, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170364, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3792, + 3874 + ], + [ + 3836, + 3775 + ], + [ + 3775, + 3749 + ], + [ + 3732, + 3847 + ], + [ + 3792, + 3874 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78253, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3787, + 3754 + ], + [ + 3811, + 3700 + ], + [ + 3789, + 3691 + ], + [ + 3789, + 3700 + ], + [ + 3774, + 3709 + ], + [ + 3759, + 3743 + ], + [ + 3775, + 3749 + ], + [ + 3787, + 3754 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79834, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3774, + 3709 + ], + [ + 3789, + 3700 + ], + [ + 3789, + 3687 + ], + [ + 3812, + 3641 + ], + [ + 3805, + 3640 + ], + [ + 3774, + 3709 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79883, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3779, + 3695 + ], + [ + 3782, + 3692 + ], + [ + 3805, + 3640 + ], + [ + 3779, + 3695 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170412, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3789, + 3691 + ], + [ + 3812, + 3641 + ], + [ + 3789, + 3687 + ], + [ + 3789, + 3691 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170407, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3864, + 4017 + ], + [ + 3874, + 3994 + ], + [ + 3742, + 3936 + ], + [ + 3733, + 3959 + ], + [ + 3864, + 4017 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83666, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3811, + 3700 + ], + [ + 3835, + 3646 + ], + [ + 3812, + 3641 + ], + [ + 3789, + 3691 + ], + [ + 3811, + 3700 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79935, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3836, + 3775 + ], + [ + 3887, + 3658 + ], + [ + 3835, + 3646 + ], + [ + 3787, + 3754 + ], + [ + 3836, + 3775 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 79990, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3861, + 3904 + ], + [ + 3916, + 3780 + ], + [ + 3846, + 3750 + ], + [ + 3836, + 3775 + ], + [ + 3792, + 3874 + ], + [ + 3861, + 3904 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80807, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3836, + 3775 + ], + [ + 3887, + 3658 + ], + [ + 3846, + 3750 + ], + [ + 3836, + 3775 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170404, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3881, + 3765 + ], + [ + 3925, + 3667 + ], + [ + 3887, + 3658 + ], + [ + 3846, + 3750 + ], + [ + 3881, + 3765 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80655, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3934, + 4049 + ], + [ + 3944, + 4025 + ], + [ + 3874, + 3994 + ], + [ + 3864, + 4017 + ], + [ + 3934, + 4049 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77165, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3893, + 4142 + ], + [ + 3934, + 4049 + ], + [ + 3864, + 4017 + ], + [ + 3822, + 4114 + ], + [ + 3893, + 4142 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77722, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3727, + 3845 + ], + [ + 3775, + 3749 + ], + [ + 3728, + 3730 + ], + [ + 3685, + 3826 + ], + [ + 3727, + 3845 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78196, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3739, + 3705 + ], + [ + 3748, + 3685 + ], + [ + 3771, + 3632 + ], + [ + 3722, + 3619 + ], + [ + 3691, + 3688 + ], + [ + 3739, + 3705 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77437, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3685, + 3826 + ], + [ + 3739, + 3705 + ], + [ + 3691, + 3688 + ], + [ + 3638, + 3806 + ], + [ + 3685, + 3826 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78145, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3708, + 4160 + ], + [ + 3677, + 4148 + ], + [ + 3673, + 4160 + ], + [ + 3708, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83024, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3691, + 4061 + ], + [ + 3742, + 3936 + ], + [ + 3665, + 3902 + ], + [ + 3626, + 4013 + ], + [ + 3618, + 4010 + ], + [ + 3610, + 4028 + ], + [ + 3691, + 4061 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83119, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3638, + 3806 + ], + [ + 3722, + 3619 + ], + [ + 3697, + 3611 + ], + [ + 3615, + 3796 + ], + [ + 3638, + 3806 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78088, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3615, + 3796 + ], + [ + 3697, + 3611 + ], + [ + 3672, + 3602 + ], + [ + 3632, + 3693 + ], + [ + 3592, + 3785 + ], + [ + 3615, + 3796 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77346, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3632, + 3693 + ], + [ + 3672, + 3602 + ], + [ + 3632, + 3588 + ], + [ + 3594, + 3676 + ], + [ + 3632, + 3693 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77300, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3673, + 4160 + ], + [ + 3677, + 4148 + ], + [ + 3500, + 4081 + ], + [ + 3490, + 4093 + ], + [ + 3528, + 4160 + ], + [ + 3673, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82460, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3634, + 3991 + ], + [ + 3665, + 3902 + ], + [ + 3562, + 3857 + ], + [ + 3523, + 3945 + ], + [ + 3634, + 3991 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83074, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3594, + 3676 + ], + [ + 3632, + 3588 + ], + [ + 3592, + 3572 + ], + [ + 3554, + 3658 + ], + [ + 3594, + 3676 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76750, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 3748 + ], + [ + 4160, + 3688 + ], + [ + 4133, + 3672 + ], + [ + 4030, + 3646 + ], + [ + 4004, + 3643 + ], + [ + 4014, + 3584 + ], + [ + 4011, + 3584 + ], + [ + 3819, + 3538 + ], + [ + 3896, + 3361 + ], + [ + 3808, + 3561 + ], + [ + 3710, + 3535 + ], + [ + 3703, + 3532 + ], + [ + 3655, + 3514 + ], + [ + 3617, + 3500 + ], + [ + 3598, + 3492 + ], + [ + 3580, + 3482 + ], + [ + 3561, + 3473 + ], + [ + 3544, + 3464 + ], + [ + 3521, + 3452 + ], + [ + 3465, + 3420 + ], + [ + 3443, + 3407 + ], + [ + 3421, + 3393 + ], + [ + 3399, + 3380 + ], + [ + 3382, + 3369 + ], + [ + 3364, + 3358 + ], + [ + 3322, + 3332 + ], + [ + 3295, + 3315 + ], + [ + 3261, + 3294 + ], + [ + 3217, + 3267 + ], + [ + 3153, + 3228 + ], + [ + 3111, + 3202 + ], + [ + 3046, + 3163 + ], + [ + 3015, + 3144 + ], + [ + 2992, + 3129 + ], + [ + 2957, + 3103 + ], + [ + 2949, + 3097 + ], + [ + 2898, + 3154 + ], + [ + 2909, + 3161 + ], + [ + 2939, + 3183 + ], + [ + 2961, + 3199 + ], + [ + 2965, + 3279 + ], + [ + 2967, + 3330 + ], + [ + 2969, + 3368 + ], + [ + 2975, + 3486 + ], + [ + 2988, + 3529 + ], + [ + 3085, + 3663 + ], + [ + 3155, + 3743 + ], + [ + 3163, + 3738 + ], + [ + 3209, + 3729 + ], + [ + 3294, + 3742 + ], + [ + 3479, + 3820 + ], + [ + 3562, + 3857 + ], + [ + 3665, + 3902 + ], + [ + 3742, + 3936 + ], + [ + 3865, + 3991 + ], + [ + 3958, + 3991 + ], + [ + 4005, + 4011 + ], + [ + 4024, + 4017 + ], + [ + 4066, + 4022 + ], + [ + 4130, + 4024 + ], + [ + 4142, + 4022 + ], + [ + 4160, + 4017 + ], + [ + 4160, + 3937 + ], + [ + 4159, + 3938 + ], + [ + 4106, + 3972 + ], + [ + 4043, + 3980 + ], + [ + 3981, + 3957 + ], + [ + 3925, + 3932 + ], + [ + 3861, + 3904 + ], + [ + 3792, + 3874 + ], + [ + 3732, + 3847 + ], + [ + 3727, + 3845 + ], + [ + 3685, + 3826 + ], + [ + 3638, + 3806 + ], + [ + 3615, + 3796 + ], + [ + 3592, + 3785 + ], + [ + 3515, + 3752 + ], + [ + 3436, + 3718 + ], + [ + 3362, + 3686 + ], + [ + 3227, + 3632 + ], + [ + 3313, + 3447 + ], + [ + 3433, + 3520 + ], + [ + 3443, + 3498 + ], + [ + 3515, + 3537 + ], + [ + 3552, + 3555 + ], + [ + 3592, + 3572 + ], + [ + 3632, + 3588 + ], + [ + 3672, + 3602 + ], + [ + 3697, + 3611 + ], + [ + 3722, + 3619 + ], + [ + 3771, + 3632 + ], + [ + 3805, + 3640 + ], + [ + 3812, + 3641 + ], + [ + 3835, + 3646 + ], + [ + 3887, + 3658 + ], + [ + 3925, + 3667 + ], + [ + 3963, + 3675 + ], + [ + 3997, + 3683 + ], + [ + 4033, + 3691 + ], + [ + 4083, + 3702 + ], + [ + 4141, + 3726 + ], + [ + 4160, + 3748 + ] + ], + [ + [ + 3095, + 3625 + ], + [ + 3055, + 3572 + ], + [ + 3011, + 3510 + ], + [ + 3118, + 3416 + ], + [ + 3011, + 3506 + ], + [ + 3003, + 3455 + ], + [ + 2999, + 3370 + ], + [ + 2998, + 3339 + ], + [ + 2994, + 3219 + ], + [ + 3035, + 3245 + ], + [ + 3079, + 3272 + ], + [ + 3122, + 3299 + ], + [ + 3161, + 3323 + ], + [ + 3183, + 3337 + ], + [ + 3196, + 3344 + ], + [ + 3188, + 3369 + ], + [ + 3251, + 3406 + ], + [ + 3261, + 3384 + ], + [ + 3323, + 3424 + ], + [ + 3261, + 3552 + ], + [ + 3227, + 3632 + ], + [ + 3226, + 3634 + ], + [ + 3148, + 3641 + ], + [ + 3097, + 3621 + ], + [ + 3095, + 3625 + ] + ], + [ + [ + 3095, + 3625 + ], + [ + 3141, + 3642 + ], + [ + 3110, + 3646 + ], + [ + 3095, + 3625 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170589, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3554, + 3658 + ], + [ + 3552, + 3662 + ], + [ + 3632, + 3693 + ], + [ + 3594, + 3676 + ], + [ + 3554, + 3658 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170235, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3592, + 3785 + ], + [ + 3632, + 3693 + ], + [ + 3552, + 3662 + ], + [ + 3515, + 3752 + ], + [ + 3592, + 3785 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77247, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3610, + 4028 + ], + [ + 3618, + 4010 + ], + [ + 3626, + 4013 + ], + [ + 3634, + 3991 + ], + [ + 3523, + 3945 + ], + [ + 3506, + 3986 + ], + [ + 3610, + 4028 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83174, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3552, + 3662 + ], + [ + 3592, + 3572 + ], + [ + 3552, + 3555 + ], + [ + 3513, + 3645 + ], + [ + 3552, + 3662 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76689, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 3626 + ], + [ + 4160, + 3389 + ], + [ + 4042, + 3372 + ], + [ + 4011, + 3584 + ], + [ + 4120, + 3610 + ], + [ + 4160, + 3626 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115499, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4154, + 4063 + ], + [ + 4160, + 4046 + ], + [ + 4160, + 4031 + ], + [ + 4135, + 4043 + ], + [ + 4154, + 4063 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116215, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4159, + 3938 + ], + [ + 4160, + 3937 + ], + [ + 4160, + 3857 + ], + [ + 4071, + 3843 + ], + [ + 4159, + 3938 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84422, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 3857 + ], + [ + 4160, + 3794 + ], + [ + 4071, + 3843 + ], + [ + 4160, + 3857 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84476, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4086, + 3835 + ], + [ + 4160, + 3794 + ], + [ + 4160, + 3748 + ], + [ + 4141, + 3726 + ], + [ + 4086, + 3835 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82405, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4106, + 3972 + ], + [ + 4159, + 3938 + ], + [ + 4071, + 3843 + ], + [ + 4048, + 3837 + ], + [ + 4106, + 3972 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 83833, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4122, + 4160 + ], + [ + 4154, + 4063 + ], + [ + 4084, + 4079 + ], + [ + 4057, + 4160 + ], + [ + 4122, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116211, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3930, + 4157 + ], + [ + 3951, + 4104 + ], + [ + 3967, + 4063 + ], + [ + 3934, + 4049 + ], + [ + 3893, + 4142 + ], + [ + 3930, + 4157 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 77659, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3925, + 3932 + ], + [ + 3976, + 3817 + ], + [ + 3912, + 3789 + ], + [ + 3861, + 3904 + ], + [ + 3925, + 3932 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80857, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3916, + 3780 + ], + [ + 3963, + 3675 + ], + [ + 3925, + 3667 + ], + [ + 3881, + 3765 + ], + [ + 3916, + 3780 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80751, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3967, + 4063 + ], + [ + 3976, + 4040 + ], + [ + 3944, + 4025 + ], + [ + 3934, + 4049 + ], + [ + 3967, + 4063 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 85144, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3945, + 3803 + ], + [ + 3997, + 3683 + ], + [ + 3963, + 3675 + ], + [ + 3912, + 3789 + ], + [ + 3945, + 3803 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81461, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3981, + 3957 + ], + [ + 3996, + 3923 + ], + [ + 3985, + 3918 + ], + [ + 4006, + 3869 + ], + [ + 3981, + 3857 + ], + [ + 3996, + 3823 + ], + [ + 3976, + 3817 + ], + [ + 3925, + 3932 + ], + [ + 3981, + 3957 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 78951, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3980, + 4160 + ], + [ + 3996, + 4123 + ], + [ + 3951, + 4104 + ], + [ + 3930, + 4157 + ], + [ + 3937, + 4160 + ], + [ + 3980, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84614, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3996, + 4123 + ], + [ + 4024, + 4054 + ], + [ + 3976, + 4040 + ], + [ + 3951, + 4104 + ], + [ + 3996, + 4123 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 84573, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3975, + 3817 + ], + [ + 4033, + 3691 + ], + [ + 3997, + 3683 + ], + [ + 3945, + 3803 + ], + [ + 3975, + 3817 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81540, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4043, + 3980 + ], + [ + 4034, + 3833 + ], + [ + 3996, + 3823 + ], + [ + 3981, + 3857 + ], + [ + 4006, + 3869 + ], + [ + 3985, + 3918 + ], + [ + 3996, + 3923 + ], + [ + 3981, + 3957 + ], + [ + 4043, + 3980 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82352, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4025, + 3831 + ], + [ + 4083, + 3702 + ], + [ + 4033, + 3691 + ], + [ + 3975, + 3817 + ], + [ + 3996, + 3823 + ], + [ + 4025, + 3831 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81634, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4057, + 4160 + ], + [ + 4092, + 4054 + ], + [ + 4024, + 4054 + ], + [ + 3980, + 4160 + ], + [ + 4057, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116213, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4043, + 3980 + ], + [ + 4106, + 3972 + ], + [ + 4048, + 3837 + ], + [ + 4034, + 3833 + ], + [ + 4043, + 3980 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81588, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4071, + 3843 + ], + [ + 4086, + 3835 + ], + [ + 4141, + 3726 + ], + [ + 4083, + 3702 + ], + [ + 4025, + 3831 + ], + [ + 4034, + 3833 + ], + [ + 4071, + 3843 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81682, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4011, + 3584 + ], + [ + 4042, + 3372 + ], + [ + 3900, + 3352 + ], + [ + 3819, + 3538 + ], + [ + 4011, + 3584 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116193, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4086, + 3152 + ], + [ + 4160, + 3128 + ], + [ + 4160, + 3124 + ], + [ + 4127, + 3106 + ], + [ + 4091, + 3118 + ], + [ + 4086, + 3152 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 173210, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3567, + 223 + ], + [ + 3647, + 85 + ], + [ + 3617, + 66 + ], + [ + 3537, + 206 + ], + [ + 3567, + 223 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116304, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3537, + 206 + ], + [ + 3677, + -39 + ], + [ + 3654, + -52 + ], + [ + 3515, + 194 + ], + [ + 3537, + 206 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116226, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3497, + 343 + ], + [ + 3586, + 262 + ], + [ + 3600, + 278 + ], + [ + 3621, + 253 + ], + [ + 3567, + 223 + ], + [ + 3497, + 343 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116307, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3567, + 223 + ], + [ + 3647, + 85 + ], + [ + 3730, + -64 + ], + [ + 3729, + -64 + ], + [ + 3649, + 80 + ], + [ + 3567, + 223 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171645, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3611, + 24 + ], + [ + 3660, + -64 + ], + [ + 3620, + -64 + ], + [ + 3581, + 8 + ], + [ + 3611, + 24 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116212, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3621, + 253 + ], + [ + 3763, + 84 + ], + [ + 3740, + 68 + ], + [ + 3704, + 114 + ], + [ + 3649, + 80 + ], + [ + 3567, + 223 + ], + [ + 3621, + 253 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116305, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3642, + 75 + ], + [ + 3722, + -64 + ], + [ + 3691, + -64 + ], + [ + 3677, + -39 + ], + [ + 3620, + 61 + ], + [ + 3642, + 75 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116217, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3647, + 85 + ], + [ + 3730, + -64 + ], + [ + 3722, + -64 + ], + [ + 3642, + 75 + ], + [ + 3620, + 61 + ], + [ + 3617, + 66 + ], + [ + 3647, + 85 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116219, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3677, + -39 + ], + [ + 3691, + -64 + ], + [ + 3660, + -64 + ], + [ + 3654, + -52 + ], + [ + 3677, + -39 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116214, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3669, + 92 + ], + [ + 3774, + -64 + ], + [ + 3729, + -64 + ], + [ + 3649, + 80 + ], + [ + 3669, + 92 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116222, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3714, + 388 + ], + [ + 3896, + 199 + ], + [ + 3822, + 126 + ], + [ + 3763, + 84 + ], + [ + 3598, + 280 + ], + [ + 3714, + 388 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116167, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3704, + 114 + ], + [ + 3740, + 68 + ], + [ + 3844, + -64 + ], + [ + 3774, + -64 + ], + [ + 3669, + 92 + ], + [ + 3704, + 114 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116224, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3914, + 213 + ], + [ + 4075, + 17 + ], + [ + 3968, + -64 + ], + [ + 3844, + -64 + ], + [ + 3740, + 68 + ], + [ + 3822, + 126 + ], + [ + 3914, + 213 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116170, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3914, + 213 + ], + [ + 3822, + 126 + ], + [ + 3896, + 199 + ], + [ + 3914, + 213 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171631, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3976, + 1014 + ], + [ + 3994, + 993 + ], + [ + 3956, + 964 + ], + [ + 3938, + 985 + ], + [ + 3976, + 1014 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116798, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3976, + 262 + ], + [ + 4138, + 61 + ], + [ + 4105, + 41 + ], + [ + 3945, + 238 + ], + [ + 3976, + 262 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116313, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3945, + 238 + ], + [ + 4106, + 33 + ], + [ + 4075, + 17 + ], + [ + 3914, + 213 + ], + [ + 3945, + 238 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116312, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4027, + 954 + ], + [ + 4059, + 915 + ], + [ + 4023, + 888 + ], + [ + 3990, + 925 + ], + [ + 4027, + 954 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116812, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4095, + 1070 + ], + [ + 4126, + 1030 + ], + [ + 3990, + 925 + ], + [ + 3956, + 964 + ], + [ + 3994, + 993 + ], + [ + 4095, + 1070 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116799, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4059, + 915 + ], + [ + 4093, + 877 + ], + [ + 4057, + 849 + ], + [ + 4023, + 888 + ], + [ + 4059, + 915 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116815, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4126, + 1030 + ], + [ + 4156, + 990 + ], + [ + 4059, + 915 + ], + [ + 4027, + 954 + ], + [ + 4126, + 1030 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116811, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4093, + 877 + ], + [ + 4130, + 833 + ], + [ + 4097, + 804 + ], + [ + 4057, + 849 + ], + [ + 4093, + 877 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116816, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4022, + 298 + ], + [ + 4160, + 127 + ], + [ + 4160, + 84 + ], + [ + 4135, + 64 + ], + [ + 3976, + 262 + ], + [ + 4022, + 298 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116315, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4071, + -61 + ], + [ + 4072, + -64 + ], + [ + 4067, + -64 + ], + [ + 4071, + -61 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 37638, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4132, + 835 + ], + [ + 4153, + 809 + ], + [ + 4160, + 815 + ], + [ + 4160, + 763 + ], + [ + 4141, + 748 + ], + [ + 4097, + 804 + ], + [ + 4132, + 835 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116736, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 929 + ], + [ + 4160, + 860 + ], + [ + 4132, + 835 + ], + [ + 4093, + 877 + ], + [ + 4160, + 929 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116814, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4156, + 990 + ], + [ + 4160, + 985 + ], + [ + 4160, + 929 + ], + [ + 4093, + 877 + ], + [ + 4059, + 915 + ], + [ + 4156, + 990 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116813, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4052, + 322 + ], + [ + 4160, + 186 + ], + [ + 4160, + 127 + ], + [ + 4022, + 298 + ], + [ + 4052, + 322 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116317, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3990, + 925 + ], + [ + 3725, + 1221 + ], + [ + 3761, + 1185 + ], + [ + 3807, + 1134 + ], + [ + 3854, + 1080 + ], + [ + 3890, + 1040 + ], + [ + 3919, + 1006 + ], + [ + 3938, + 985 + ], + [ + 3956, + 964 + ], + [ + 3990, + 925 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171471, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4130, + 833 + ], + [ + 4093, + 877 + ], + [ + 4132, + 835 + ], + [ + 4130, + 833 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171491, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 763 + ], + [ + 4160, + 723 + ], + [ + 4141, + 748 + ], + [ + 4160, + 763 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116737, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 860 + ], + [ + 4160, + 815 + ], + [ + 4153, + 809 + ], + [ + 4132, + 835 + ], + [ + 4160, + 860 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116838, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 407 + ], + [ + 4160, + 186 + ], + [ + 4052, + 322 + ], + [ + 4160, + 407 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116171, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 7 + ], + [ + 4160, + -64 + ], + [ + 4072, + -64 + ], + [ + 4071, + -61 + ], + [ + 4160, + 7 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 37288, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4078, + 1093 + ], + [ + 4095, + 1070 + ], + [ + 3994, + 993 + ], + [ + 3976, + 1014 + ], + [ + 4078, + 1093 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116797, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1092 + ], + [ + 4160, + 1071 + ], + [ + 4150, + 1083 + ], + [ + 4160, + 1092 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116826, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4127, + 1181 + ], + [ + 4160, + 1141 + ], + [ + 4153, + 1148 + ], + [ + 4127, + 1181 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171475, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4153, + 1148 + ], + [ + 4160, + 1140 + ], + [ + 4160, + 1092 + ], + [ + 4150, + 1083 + ], + [ + 4120, + 1122 + ], + [ + 4153, + 1148 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116818, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4100, + 1214 + ], + [ + 4127, + 1181 + ], + [ + 4153, + 1148 + ], + [ + 4120, + 1122 + ], + [ + 4069, + 1189 + ], + [ + 4100, + 1214 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116789, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1173 + ], + [ + 4160, + 1140 + ], + [ + 4144, + 1160 + ], + [ + 4160, + 1173 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116833, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3803, + 1218 + ], + [ + 3848, + 1165 + ], + [ + 3807, + 1134 + ], + [ + 3761, + 1185 + ], + [ + 3803, + 1218 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116791, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3894, + 1111 + ], + [ + 3928, + 1070 + ], + [ + 3890, + 1040 + ], + [ + 3854, + 1080 + ], + [ + 3894, + 1111 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116793, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4034, + 1151 + ], + [ + 4060, + 1116 + ], + [ + 3919, + 1006 + ], + [ + 3890, + 1040 + ], + [ + 3928, + 1070 + ], + [ + 4034, + 1151 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116795, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4001, + 1194 + ], + [ + 4034, + 1151 + ], + [ + 3928, + 1070 + ], + [ + 3894, + 1111 + ], + [ + 4001, + 1194 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116792, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3957, + 1036 + ], + [ + 3976, + 1014 + ], + [ + 3938, + 985 + ], + [ + 3919, + 1006 + ], + [ + 3957, + 1036 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116796, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4060, + 1116 + ], + [ + 4078, + 1093 + ], + [ + 3976, + 1014 + ], + [ + 3957, + 1036 + ], + [ + 4060, + 1116 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116794, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3581, + 1777 + ], + [ + 3602, + 1748 + ], + [ + 3539, + 1703 + ], + [ + 3518, + 1733 + ], + [ + 3581, + 1777 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116982, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3468, + 1803 + ], + [ + 3828, + 1309 + ], + [ + 3725, + 1221 + ], + [ + 3345, + 1714 + ], + [ + 3431, + 1786 + ], + [ + 3468, + 1803 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116729, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3602, + 1748 + ], + [ + 3622, + 1720 + ], + [ + 3559, + 1675 + ], + [ + 3539, + 1703 + ], + [ + 3602, + 1748 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116981, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3631, + 1929 + ], + [ + 3639, + 1913 + ], + [ + 3550, + 1874 + ], + [ + 3543, + 1888 + ], + [ + 3631, + 1929 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116355, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3575, + 2195 + ], + [ + 3614, + 2117 + ], + [ + 3588, + 2088 + ], + [ + 3543, + 2180 + ], + [ + 3575, + 2195 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116410, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3540, + 2279 + ], + [ + 3618, + 2122 + ], + [ + 3614, + 2117 + ], + [ + 3535, + 2276 + ], + [ + 3540, + 2279 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116427, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3545, + 2370 + ], + [ + 3646, + 2165 + ], + [ + 3613, + 2132 + ], + [ + 3504, + 2350 + ], + [ + 3545, + 2370 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116347, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3596, + 2003 + ], + [ + 3616, + 1961 + ], + [ + 3561, + 1897 + ], + [ + 3543, + 1888 + ], + [ + 3526, + 1923 + ], + [ + 3596, + 2003 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116353, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3525, + 2587 + ], + [ + 3615, + 2404 + ], + [ + 3578, + 2386 + ], + [ + 3486, + 2572 + ], + [ + 3525, + 2587 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116425, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3574, + 2925 + ], + [ + 3597, + 2866 + ], + [ + 3563, + 2853 + ], + [ + 3541, + 2913 + ], + [ + 3574, + 2925 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116650, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3564, + 3009 + ], + [ + 3594, + 2932 + ], + [ + 3574, + 2925 + ], + [ + 3541, + 3009 + ], + [ + 3564, + 3009 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115434, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3564, + 3009 + ], + [ + 3587, + 3008 + ], + [ + 3613, + 2939 + ], + [ + 3594, + 2932 + ], + [ + 3564, + 3009 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115427, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3589, + 2612 + ], + [ + 3593, + 2603 + ], + [ + 3560, + 2590 + ], + [ + 3555, + 2599 + ], + [ + 3589, + 2612 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116659, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3560, + 2590 + ], + [ + 3645, + 2419 + ], + [ + 3615, + 2404 + ], + [ + 3529, + 2578 + ], + [ + 3560, + 2590 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116409, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3613, + 2939 + ], + [ + 3635, + 2881 + ], + [ + 3597, + 2866 + ], + [ + 3574, + 2925 + ], + [ + 3613, + 2939 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116648, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3650, + 3013 + ], + [ + 3692, + 2903 + ], + [ + 3635, + 2881 + ], + [ + 3587, + 3008 + ], + [ + 3650, + 3013 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116649, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3657, + 2639 + ], + [ + 3662, + 2630 + ], + [ + 3593, + 2603 + ], + [ + 3589, + 2612 + ], + [ + 3657, + 2639 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116660, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3615, + 2404 + ], + [ + 3688, + 2258 + ], + [ + 3705, + 2223 + ], + [ + 3673, + 2185 + ], + [ + 3574, + 2384 + ], + [ + 3615, + 2404 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116424, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3636, + 1985 + ], + [ + 3657, + 1942 + ], + [ + 3636, + 1932 + ], + [ + 3616, + 1961 + ], + [ + 3636, + 1985 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116356, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3618, + 1957 + ], + [ + 3636, + 1932 + ], + [ + 3618, + 1956 + ], + [ + 3618, + 1957 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171608, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3574, + 2384 + ], + [ + 3673, + 2185 + ], + [ + 3649, + 2157 + ], + [ + 3545, + 2370 + ], + [ + 3574, + 2384 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116348, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3616, + 1961 + ], + [ + 3631, + 1929 + ], + [ + 3561, + 1897 + ], + [ + 3616, + 1961 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116354, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3616, + 2027 + ], + [ + 3636, + 1985 + ], + [ + 3616, + 1961 + ], + [ + 3596, + 2003 + ], + [ + 3616, + 2027 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116358, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3622, + 1720 + ], + [ + 3643, + 1691 + ], + [ + 3581, + 1645 + ], + [ + 3559, + 1675 + ], + [ + 3622, + 1720 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116980, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3643, + 1691 + ], + [ + 3665, + 1662 + ], + [ + 3602, + 1616 + ], + [ + 3581, + 1645 + ], + [ + 3643, + 1691 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116979, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3651, + 1885 + ], + [ + 3686, + 1835 + ], + [ + 3622, + 1790 + ], + [ + 3577, + 1852 + ], + [ + 3651, + 1885 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116971, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3665, + 1662 + ], + [ + 3686, + 1632 + ], + [ + 3623, + 1587 + ], + [ + 3602, + 1616 + ], + [ + 3665, + 1662 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116873, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3707, + 1603 + ], + [ + 3728, + 1575 + ], + [ + 3665, + 1530 + ], + [ + 3644, + 1559 + ], + [ + 3707, + 1603 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116871, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3686, + 1632 + ], + [ + 3707, + 1603 + ], + [ + 3644, + 1559 + ], + [ + 3623, + 1587 + ], + [ + 3686, + 1632 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116872, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3686, + 1835 + ], + [ + 3707, + 1805 + ], + [ + 3644, + 1760 + ], + [ + 3622, + 1790 + ], + [ + 3686, + 1835 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116970, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3676, + 2031 + ], + [ + 3674, + 2011 + ], + [ + 3689, + 1978 + ], + [ + 3701, + 1973 + ], + [ + 3696, + 1971 + ], + [ + 3700, + 1962 + ], + [ + 3657, + 1942 + ], + [ + 3636, + 1985 + ], + [ + 3676, + 2031 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116357, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3734, + 2164 + ], + [ + 3754, + 2125 + ], + [ + 3636, + 1985 + ], + [ + 3616, + 2027 + ], + [ + 3734, + 2164 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116360, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3645, + 2419 + ], + [ + 3728, + 2250 + ], + [ + 3705, + 2223 + ], + [ + 3615, + 2404 + ], + [ + 3645, + 2419 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116408, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3618, + 1957 + ], + [ + 3636, + 1932 + ], + [ + 3657, + 1942 + ], + [ + 3665, + 1924 + ], + [ + 3639, + 1913 + ], + [ + 3618, + 1957 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116359, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3593, + 2603 + ], + [ + 3754, + 2279 + ], + [ + 3728, + 2250 + ], + [ + 3560, + 2590 + ], + [ + 3593, + 2603 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116308, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3665, + 2827 + ], + [ + 3722, + 2676 + ], + [ + 3652, + 2648 + ], + [ + 3595, + 2800 + ], + [ + 3665, + 2827 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116655, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3700, + 3023 + ], + [ + 3721, + 2969 + ], + [ + 3674, + 2950 + ], + [ + 3650, + 3013 + ], + [ + 3700, + 3023 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115406, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3709, + 2660 + ], + [ + 3713, + 2651 + ], + [ + 3662, + 2630 + ], + [ + 3657, + 2639 + ], + [ + 3709, + 2660 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116661, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3662, + 2630 + ], + [ + 3800, + 2333 + ], + [ + 3754, + 2279 + ], + [ + 3593, + 2603 + ], + [ + 3662, + 2630 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116310, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3698, + 2960 + ], + [ + 3716, + 2912 + ], + [ + 3692, + 2903 + ], + [ + 3674, + 2950 + ], + [ + 3698, + 2960 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115430, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3737, + 2854 + ], + [ + 3786, + 2725 + ], + [ + 3786, + 2701 + ], + [ + 3722, + 2676 + ], + [ + 3665, + 2827 + ], + [ + 3737, + 2854 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116658, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3721, + 2969 + ], + [ + 3740, + 2921 + ], + [ + 3716, + 2912 + ], + [ + 3698, + 2960 + ], + [ + 3721, + 2969 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115429, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3711, + 1913 + ], + [ + 3729, + 1885 + ], + [ + 3720, + 1880 + ], + [ + 3701, + 1908 + ], + [ + 3711, + 1913 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117007, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3701, + 1908 + ], + [ + 3720, + 1880 + ], + [ + 3693, + 1861 + ], + [ + 3670, + 1894 + ], + [ + 3701, + 1908 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117000, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3701, + 1973 + ], + [ + 3713, + 1968 + ], + [ + 3700, + 1962 + ], + [ + 3696, + 1971 + ], + [ + 3701, + 1973 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116367, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3707, + 1805 + ], + [ + 3746, + 1746 + ], + [ + 3685, + 1703 + ], + [ + 3644, + 1760 + ], + [ + 3707, + 1805 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116972, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3728, + 1575 + ], + [ + 3748, + 1547 + ], + [ + 3687, + 1501 + ], + [ + 3665, + 1530 + ], + [ + 3728, + 1575 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116870, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3670, + 1894 + ], + [ + 3780, + 1733 + ], + [ + 3763, + 1721 + ], + [ + 3707, + 1805 + ], + [ + 3651, + 1885 + ], + [ + 3670, + 1894 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116976, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3746, + 1746 + ], + [ + 3766, + 1717 + ], + [ + 3705, + 1674 + ], + [ + 3685, + 1703 + ], + [ + 3746, + 1746 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116973, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3720, + 1880 + ], + [ + 3766, + 1812 + ], + [ + 3739, + 1793 + ], + [ + 3693, + 1861 + ], + [ + 3720, + 1880 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116999, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3875, + 1365 + ], + [ + 3916, + 1305 + ], + [ + 3761, + 1185 + ], + [ + 3725, + 1221 + ], + [ + 3828, + 1309 + ], + [ + 3823, + 1316 + ], + [ + 3875, + 1365 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116786, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3853, + 1402 + ], + [ + 3875, + 1365 + ], + [ + 3823, + 1316 + ], + [ + 3791, + 1357 + ], + [ + 3853, + 1402 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116907, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3849, + 1595 + ], + [ + 3878, + 1555 + ], + [ + 3821, + 1515 + ], + [ + 3793, + 1554 + ], + [ + 3849, + 1595 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116901, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3851, + 1683 + ], + [ + 3874, + 1650 + ], + [ + 3832, + 1620 + ], + [ + 3827, + 1628 + ], + [ + 3809, + 1654 + ], + [ + 3851, + 1683 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117028, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3816, + 1757 + ], + [ + 3861, + 1689 + ], + [ + 3851, + 1683 + ], + [ + 3807, + 1750 + ], + [ + 3816, + 1757 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117010, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3809, + 1654 + ], + [ + 3806, + 1658 + ], + [ + 3851, + 1683 + ], + [ + 3809, + 1654 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171543, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3786, + 1946 + ], + [ + 3896, + 1776 + ], + [ + 3882, + 1770 + ], + [ + 3851, + 1817 + ], + [ + 3823, + 1798 + ], + [ + 3783, + 1859 + ], + [ + 3806, + 1885 + ], + [ + 3772, + 1940 + ], + [ + 3786, + 1946 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116977, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3802, + 2180 + ], + [ + 3833, + 2120 + ], + [ + 3872, + 2043 + ], + [ + 3840, + 2028 + ], + [ + 3776, + 2154 + ], + [ + 3802, + 2180 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116365, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3846, + 2233 + ], + [ + 3886, + 2144 + ], + [ + 3833, + 2120 + ], + [ + 3801, + 2182 + ], + [ + 3846, + 2233 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116496, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3845, + 1973 + ], + [ + 3948, + 1802 + ], + [ + 3921, + 1789 + ], + [ + 3896, + 1776 + ], + [ + 3786, + 1946 + ], + [ + 3845, + 1973 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116978, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3851, + 1817 + ], + [ + 3882, + 1770 + ], + [ + 3890, + 1757 + ], + [ + 3846, + 1728 + ], + [ + 3806, + 1787 + ], + [ + 3851, + 1817 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117013, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3846, + 1728 + ], + [ + 3869, + 1694 + ], + [ + 3861, + 1689 + ], + [ + 3839, + 1722 + ], + [ + 3846, + 1728 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117015, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3878, + 1555 + ], + [ + 3905, + 1515 + ], + [ + 3850, + 1476 + ], + [ + 3821, + 1515 + ], + [ + 3878, + 1555 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116899, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3869, + 1694 + ], + [ + 3891, + 1661 + ], + [ + 3874, + 1650 + ], + [ + 3851, + 1683 + ], + [ + 3869, + 1694 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117011, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3890, + 1757 + ], + [ + 3915, + 1718 + ], + [ + 3872, + 1690 + ], + [ + 3846, + 1728 + ], + [ + 3890, + 1757 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117012, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3905, + 1515 + ], + [ + 3932, + 1476 + ], + [ + 3878, + 1437 + ], + [ + 3850, + 1476 + ], + [ + 3905, + 1515 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116900, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3874, + 1650 + ], + [ + 3900, + 1611 + ], + [ + 3876, + 1594 + ], + [ + 3960, + 1468 + ], + [ + 3945, + 1457 + ], + [ + 3849, + 1595 + ], + [ + 3832, + 1620 + ], + [ + 3874, + 1650 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116925, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3932, + 1476 + ], + [ + 3945, + 1457 + ], + [ + 3909, + 1430 + ], + [ + 3878, + 1437 + ], + [ + 3932, + 1476 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116902, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3900, + 1611 + ], + [ + 3948, + 1538 + ], + [ + 3924, + 1522 + ], + [ + 3876, + 1594 + ], + [ + 3900, + 1611 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116924, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3915, + 1718 + ], + [ + 3940, + 1680 + ], + [ + 3897, + 1652 + ], + [ + 3872, + 1690 + ], + [ + 3915, + 1718 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117001, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3890, + 1757 + ], + [ + 3923, + 1707 + ], + [ + 3915, + 1718 + ], + [ + 3890, + 1757 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171622, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3891, + 1661 + ], + [ + 3917, + 1624 + ], + [ + 3900, + 1611 + ], + [ + 3874, + 1650 + ], + [ + 3891, + 1661 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117008, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3887, + 2280 + ], + [ + 3977, + 2092 + ], + [ + 3959, + 2084 + ], + [ + 3924, + 2159 + ], + [ + 3887, + 2142 + ], + [ + 3846, + 2233 + ], + [ + 3887, + 2280 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116363, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3888, + 2140 + ], + [ + 3922, + 2066 + ], + [ + 3872, + 2043 + ], + [ + 3833, + 2120 + ], + [ + 3888, + 2140 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116362, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3886, + 2144 + ], + [ + 3887, + 2142 + ], + [ + 3888, + 2140 + ], + [ + 3833, + 2120 + ], + [ + 3886, + 2144 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170418, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3905, + 2604 + ], + [ + 3951, + 2508 + ], + [ + 3925, + 2478 + ], + [ + 3874, + 2589 + ], + [ + 3905, + 2604 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116435, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3896, + 3062 + ], + [ + 3923, + 2991 + ], + [ + 3878, + 2974 + ], + [ + 3848, + 3052 + ], + [ + 3896, + 3062 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115988, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3860, + 2700 + ], + [ + 3905, + 2604 + ], + [ + 3874, + 2589 + ], + [ + 3829, + 2687 + ], + [ + 3860, + 2700 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115214, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3829, + 2687 + ], + [ + 3925, + 2478 + ], + [ + 3903, + 2452 + ], + [ + 3800, + 2676 + ], + [ + 3829, + 2687 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116433, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3868, + 2904 + ], + [ + 3917, + 2776 + ], + [ + 3833, + 2744 + ], + [ + 3785, + 2872 + ], + [ + 3868, + 2904 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116656, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3848, + 3052 + ], + [ + 3878, + 2974 + ], + [ + 3824, + 2953 + ], + [ + 3790, + 3041 + ], + [ + 3848, + 3052 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115989, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3790, + 3041 + ], + [ + 3805, + 3003 + ], + [ + 3767, + 2990 + ], + [ + 3751, + 3033 + ], + [ + 3790, + 3041 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115990, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3805, + 3003 + ], + [ + 3824, + 2953 + ], + [ + 3788, + 2939 + ], + [ + 3767, + 2990 + ], + [ + 3805, + 3003 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115991, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3785, + 2872 + ], + [ + 3833, + 2744 + ], + [ + 3786, + 2725 + ], + [ + 3737, + 2854 + ], + [ + 3785, + 2872 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116657, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3786, + 2680 + ], + [ + 3786, + 2670 + ], + [ + 3800, + 2676 + ], + [ + 3903, + 2452 + ], + [ + 3840, + 2379 + ], + [ + 3713, + 2651 + ], + [ + 3786, + 2680 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116314, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3776, + 2154 + ], + [ + 3770, + 2165 + ], + [ + 3778, + 2156 + ], + [ + 3776, + 2154 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171611, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3806, + 1787 + ], + [ + 3846, + 1728 + ], + [ + 3839, + 1722 + ], + [ + 3799, + 1782 + ], + [ + 3806, + 1787 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117014, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3833, + 1431 + ], + [ + 3853, + 1402 + ], + [ + 3791, + 1357 + ], + [ + 3769, + 1386 + ], + [ + 3833, + 1431 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116908, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3827, + 1628 + ], + [ + 3849, + 1595 + ], + [ + 3793, + 1554 + ], + [ + 3769, + 1587 + ], + [ + 3827, + 1628 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116898, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3807, + 1750 + ], + [ + 3851, + 1683 + ], + [ + 3806, + 1658 + ], + [ + 3763, + 1721 + ], + [ + 3807, + 1750 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117029, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3774, + 1818 + ], + [ + 3816, + 1757 + ], + [ + 3807, + 1750 + ], + [ + 3766, + 1812 + ], + [ + 3774, + 1818 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117009, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3811, + 1460 + ], + [ + 3833, + 1431 + ], + [ + 3769, + 1386 + ], + [ + 3749, + 1415 + ], + [ + 3811, + 1460 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116867, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3806, + 1658 + ], + [ + 3827, + 1628 + ], + [ + 3769, + 1587 + ], + [ + 3749, + 1614 + ], + [ + 3806, + 1658 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116897, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3802, + 1777 + ], + [ + 3816, + 1757 + ], + [ + 3826, + 1740 + ], + [ + 3802, + 1777 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171600, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3777, + 2152 + ], + [ + 3840, + 2028 + ], + [ + 3810, + 2014 + ], + [ + 3754, + 2125 + ], + [ + 3777, + 2152 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116366, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3758, + 2190 + ], + [ + 3777, + 2152 + ], + [ + 3754, + 2125 + ], + [ + 3734, + 2164 + ], + [ + 3758, + 2190 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116498, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3772, + 1940 + ], + [ + 3806, + 1885 + ], + [ + 3783, + 1859 + ], + [ + 3739, + 1925 + ], + [ + 3772, + 1940 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117003, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3766, + 1812 + ], + [ + 3807, + 1750 + ], + [ + 3780, + 1733 + ], + [ + 3739, + 1793 + ], + [ + 3766, + 1812 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117030, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3739, + 1925 + ], + [ + 3823, + 1798 + ], + [ + 3806, + 1787 + ], + [ + 3721, + 1917 + ], + [ + 3739, + 1925 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116997, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3786, + 1687 + ], + [ + 3806, + 1658 + ], + [ + 3749, + 1614 + ], + [ + 3727, + 1645 + ], + [ + 3786, + 1687 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116975, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3790, + 1490 + ], + [ + 3811, + 1460 + ], + [ + 3749, + 1415 + ], + [ + 3728, + 1445 + ], + [ + 3790, + 1490 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116868, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3721, + 1917 + ], + [ + 3806, + 1787 + ], + [ + 3799, + 1782 + ], + [ + 3729, + 1885 + ], + [ + 3711, + 1913 + ], + [ + 3721, + 1917 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116998, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3729, + 1885 + ], + [ + 3774, + 1818 + ], + [ + 3766, + 1812 + ], + [ + 3720, + 1880 + ], + [ + 3729, + 1885 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116985, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3766, + 1717 + ], + [ + 3786, + 1687 + ], + [ + 3727, + 1645 + ], + [ + 3705, + 1674 + ], + [ + 3766, + 1717 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116974, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3748, + 1547 + ], + [ + 3790, + 1490 + ], + [ + 3728, + 1445 + ], + [ + 3687, + 1501 + ], + [ + 3748, + 1547 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116869, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3810, + 2014 + ], + [ + 3794, + 1980 + ], + [ + 3665, + 1924 + ], + [ + 3657, + 1942 + ], + [ + 3713, + 1968 + ], + [ + 3810, + 2014 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116361, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3754, + 2125 + ], + [ + 3810, + 2014 + ], + [ + 3713, + 1968 + ], + [ + 3689, + 1978 + ], + [ + 3674, + 2011 + ], + [ + 3676, + 2036 + ], + [ + 3754, + 2125 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116352, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3768, + 2989 + ], + [ + 3788, + 2939 + ], + [ + 3740, + 2921 + ], + [ + 3721, + 2969 + ], + [ + 3768, + 2989 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115404, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3786, + 2691 + ], + [ + 3786, + 2680 + ], + [ + 3713, + 2651 + ], + [ + 3709, + 2660 + ], + [ + 3786, + 2691 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116662, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3713, + 2651 + ], + [ + 3840, + 2379 + ], + [ + 3800, + 2333 + ], + [ + 3662, + 2630 + ], + [ + 3713, + 2651 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116311, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3751, + 3033 + ], + [ + 3768, + 2989 + ], + [ + 3720, + 2971 + ], + [ + 3700, + 3023 + ], + [ + 3751, + 3033 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115405, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3768, + 2989 + ], + [ + 3721, + 2969 + ], + [ + 3720, + 2971 + ], + [ + 3768, + 2989 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170599, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4090, + 3088 + ], + [ + 4099, + 3067 + ], + [ + 4088, + 3054 + ], + [ + 4039, + 3035 + ], + [ + 4019, + 3086 + ], + [ + 4090, + 3088 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115985, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4059, + 2977 + ], + [ + 4114, + 2833 + ], + [ + 4067, + 2814 + ], + [ + 4011, + 2959 + ], + [ + 4059, + 2977 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116665, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4043, + 2749 + ], + [ + 4084, + 2662 + ], + [ + 4070, + 2646 + ], + [ + 4026, + 2742 + ], + [ + 4043, + 2749 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115349, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4063, + 2481 + ], + [ + 4111, + 2377 + ], + [ + 4059, + 2353 + ], + [ + 4018, + 2430 + ], + [ + 4063, + 2481 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116487, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4079, + 2301 + ], + [ + 4138, + 2176 + ], + [ + 4111, + 2163 + ], + [ + 4052, + 2287 + ], + [ + 4079, + 2301 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116430, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4073, + 2244 + ], + [ + 4111, + 2163 + ], + [ + 4079, + 2146 + ], + [ + 4040, + 2228 + ], + [ + 4073, + 2244 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116502, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4090, + 1468 + ], + [ + 4123, + 1428 + ], + [ + 4072, + 1385 + ], + [ + 4040, + 1426 + ], + [ + 4090, + 1468 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116893, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4033, + 2064 + ], + [ + 4056, + 2055 + ], + [ + 4160, + 1853 + ], + [ + 4160, + 1616 + ], + [ + 4134, + 1598 + ], + [ + 4006, + 1822 + ], + [ + 3905, + 2001 + ], + [ + 4033, + 2064 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116732, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4090, + 1468 + ], + [ + 4040, + 1426 + ], + [ + 4039, + 1427 + ], + [ + 4090, + 1468 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171563, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4076, + 1380 + ], + [ + 4113, + 1334 + ], + [ + 4047, + 1281 + ], + [ + 4010, + 1328 + ], + [ + 4076, + 1380 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116892, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4074, + 1489 + ], + [ + 4090, + 1468 + ], + [ + 4039, + 1427 + ], + [ + 4021, + 1449 + ], + [ + 4074, + 1489 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116895, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4018, + 2430 + ], + [ + 4047, + 2370 + ], + [ + 4079, + 2301 + ], + [ + 4052, + 2287 + ], + [ + 3996, + 2405 + ], + [ + 4018, + 2430 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116432, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4028, + 2253 + ], + [ + 4079, + 2146 + ], + [ + 4047, + 2129 + ], + [ + 3997, + 2239 + ], + [ + 4028, + 2253 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116481, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4006, + 1822 + ], + [ + 4134, + 1598 + ], + [ + 4104, + 1575 + ], + [ + 3966, + 1803 + ], + [ + 4006, + 1822 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116906, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4055, + 1406 + ], + [ + 4076, + 1380 + ], + [ + 4010, + 1328 + ], + [ + 3992, + 1350 + ], + [ + 4055, + 1406 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116891, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4055, + 1406 + ], + [ + 3992, + 1350 + ], + [ + 3992, + 1351 + ], + [ + 4055, + 1406 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171553, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4039, + 1427 + ], + [ + 4055, + 1406 + ], + [ + 3992, + 1351 + ], + [ + 3973, + 1375 + ], + [ + 4039, + 1427 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116879, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3986, + 1686 + ], + [ + 4071, + 1551 + ], + [ + 4040, + 1528 + ], + [ + 3951, + 1663 + ], + [ + 3986, + 1686 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116904, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3962, + 1809 + ], + [ + 3966, + 1803 + ], + [ + 4104, + 1575 + ], + [ + 4071, + 1551 + ], + [ + 3921, + 1789 + ], + [ + 3962, + 1809 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116905, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3996, + 2405 + ], + [ + 4073, + 2244 + ], + [ + 4040, + 2228 + ], + [ + 3971, + 2376 + ], + [ + 3996, + 2405 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116500, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4011, + 2959 + ], + [ + 4067, + 2814 + ], + [ + 4013, + 2795 + ], + [ + 3959, + 2939 + ], + [ + 4011, + 2959 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116666, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4024, + 2745 + ], + [ + 4070, + 2646 + ], + [ + 4002, + 2568 + ], + [ + 3982, + 2611 + ], + [ + 4054, + 2644 + ], + [ + 4031, + 2706 + ], + [ + 4009, + 2701 + ], + [ + 3994, + 2740 + ], + [ + 4024, + 2745 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115347, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4019, + 3086 + ], + [ + 4039, + 3035 + ], + [ + 3992, + 3017 + ], + [ + 3969, + 3077 + ], + [ + 4019, + 3086 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115986, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3994, + 2740 + ], + [ + 4009, + 2701 + ], + [ + 4031, + 2706 + ], + [ + 4054, + 2644 + ], + [ + 3982, + 2611 + ], + [ + 3928, + 2726 + ], + [ + 3946, + 2723 + ], + [ + 3994, + 2740 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115216, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3966, + 2646 + ], + [ + 4002, + 2568 + ], + [ + 3975, + 2537 + ], + [ + 3931, + 2631 + ], + [ + 3966, + 2646 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115220, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3959, + 2939 + ], + [ + 4013, + 2795 + ], + [ + 3968, + 2786 + ], + [ + 3917, + 2923 + ], + [ + 3959, + 2939 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115209, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3969, + 3077 + ], + [ + 3992, + 3017 + ], + [ + 3923, + 2991 + ], + [ + 3896, + 3062 + ], + [ + 3969, + 3077 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115987, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3917, + 2923 + ], + [ + 3968, + 2786 + ], + [ + 3917, + 2776 + ], + [ + 3868, + 2904 + ], + [ + 3917, + 2923 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115211, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3892, + 2713 + ], + [ + 3975, + 2537 + ], + [ + 3951, + 2508 + ], + [ + 3860, + 2700 + ], + [ + 3892, + 2713 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116438, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3928, + 2726 + ], + [ + 3966, + 2646 + ], + [ + 3931, + 2631 + ], + [ + 3892, + 2713 + ], + [ + 3928, + 2726 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115218, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3905, + 2001 + ], + [ + 4006, + 1822 + ], + [ + 3984, + 1811 + ], + [ + 3883, + 1990 + ], + [ + 3905, + 2001 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117006, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3924, + 2159 + ], + [ + 3959, + 2084 + ], + [ + 3922, + 2066 + ], + [ + 3887, + 2142 + ], + [ + 3924, + 2159 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116477, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3883, + 1990 + ], + [ + 3984, + 1811 + ], + [ + 3948, + 1802 + ], + [ + 3845, + 1973 + ], + [ + 3883, + 1990 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117005, + "type": "Feature" + }, + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 4160, + 2188 + ], + [ + 4160, + 2130 + ], + [ + 4153, + 2126 + ], + [ + 4108, + 2103 + ], + [ + 4101, + 2080 + ], + [ + 4136, + 2013 + ], + [ + 4154, + 1976 + ], + [ + 4160, + 1964 + ], + [ + 4160, + 1853 + ], + [ + 4056, + 2055 + ], + [ + 4033, + 2064 + ], + [ + 3912, + 2004 + ], + [ + 3876, + 2045 + ], + [ + 3922, + 2066 + ], + [ + 3959, + 2084 + ], + [ + 3977, + 2092 + ], + [ + 4047, + 2129 + ], + [ + 4111, + 2163 + ], + [ + 4138, + 2176 + ], + [ + 4079, + 2301 + ], + [ + 4047, + 2370 + ], + [ + 4018, + 2430 + ], + [ + 4059, + 2353 + ], + [ + 4142, + 2178 + ], + [ + 4160, + 2188 + ] + ] + ], + [ + [ + [ + 4160, + 3016 + ], + [ + 4138, + 3007 + ], + [ + 4107, + 2995 + ], + [ + 4011, + 2959 + ], + [ + 3959, + 2939 + ], + [ + 3917, + 2923 + ], + [ + 3868, + 2904 + ], + [ + 3785, + 2872 + ], + [ + 3665, + 2827 + ], + [ + 3595, + 2800 + ], + [ + 3428, + 2736 + ], + [ + 3357, + 2709 + ], + [ + 3307, + 2690 + ], + [ + 3264, + 2739 + ], + [ + 3399, + 2791 + ], + [ + 3447, + 2809 + ], + [ + 3496, + 2828 + ], + [ + 3530, + 2841 + ], + [ + 3563, + 2853 + ], + [ + 3597, + 2866 + ], + [ + 3635, + 2881 + ], + [ + 3692, + 2903 + ], + [ + 3788, + 2939 + ], + [ + 3878, + 2974 + ], + [ + 3923, + 2991 + ], + [ + 3992, + 3017 + ], + [ + 4039, + 3035 + ], + [ + 4088, + 3054 + ], + [ + 4099, + 3067 + ], + [ + 4090, + 3088 + ], + [ + 4019, + 3086 + ], + [ + 3969, + 3077 + ], + [ + 3896, + 3062 + ], + [ + 3848, + 3052 + ], + [ + 3790, + 3041 + ], + [ + 3751, + 3033 + ], + [ + 3700, + 3023 + ], + [ + 3650, + 3013 + ], + [ + 3587, + 3008 + ], + [ + 3564, + 3009 + ], + [ + 3541, + 3009 + ], + [ + 3504, + 3010 + ], + [ + 3426, + 3012 + ], + [ + 3369, + 3013 + ], + [ + 3324, + 3014 + ], + [ + 3314, + 3015 + ], + [ + 3168, + 3012 + ], + [ + 3253, + 2751 + ], + [ + 3218, + 2791 + ], + [ + 3207, + 2826 + ], + [ + 3184, + 2891 + ], + [ + 3151, + 2996 + ], + [ + 3137, + 3002 + ], + [ + 3109, + 2989 + ], + [ + 3079, + 2969 + ], + [ + 3069, + 2961 + ], + [ + 3029, + 3006 + ], + [ + 3030, + 3008 + ], + [ + 3047, + 3020 + ], + [ + 3065, + 3033 + ], + [ + 3124, + 3068 + ], + [ + 3160, + 3073 + ], + [ + 3200, + 3079 + ], + [ + 3333, + 3075 + ], + [ + 3358, + 3075 + ], + [ + 3385, + 3074 + ], + [ + 3465, + 3072 + ], + [ + 3501, + 3071 + ], + [ + 3536, + 3070 + ], + [ + 3536, + 3071 + ], + [ + 3541, + 3078 + ], + [ + 3572, + 3077 + ], + [ + 3608, + 3077 + ], + [ + 3608, + 3079 + ], + [ + 3636, + 3081 + ], + [ + 3647, + 3082 + ], + [ + 3668, + 3083 + ], + [ + 3688, + 3084 + ], + [ + 3693, + 3085 + ], + [ + 3697, + 3086 + ], + [ + 3731, + 3092 + ], + [ + 3773, + 3100 + ], + [ + 3796, + 3105 + ], + [ + 3876, + 3121 + ], + [ + 4080, + 3154 + ], + [ + 4086, + 3152 + ], + [ + 4091, + 3118 + ], + [ + 4160, + 3096 + ], + [ + 4160, + 3016 + ] + ] + ], + [ + [ + [ + 4160, + 2752 + ], + [ + 4160, + 2594 + ], + [ + 4099, + 2523 + ], + [ + 4063, + 2481 + ], + [ + 4018, + 2430 + ], + [ + 3996, + 2405 + ], + [ + 3971, + 2376 + ], + [ + 3948, + 2349 + ], + [ + 3887, + 2280 + ], + [ + 3846, + 2233 + ], + [ + 3801, + 2182 + ], + [ + 3802, + 2180 + ], + [ + 3778, + 2156 + ], + [ + 3770, + 2165 + ], + [ + 3758, + 2190 + ], + [ + 3753, + 2185 + ], + [ + 3712, + 2231 + ], + [ + 3728, + 2250 + ], + [ + 3754, + 2279 + ], + [ + 3800, + 2333 + ], + [ + 3840, + 2379 + ], + [ + 3903, + 2452 + ], + [ + 3925, + 2478 + ], + [ + 3951, + 2508 + ], + [ + 3975, + 2537 + ], + [ + 4002, + 2568 + ], + [ + 4070, + 2646 + ], + [ + 4084, + 2662 + ], + [ + 4160, + 2752 + ] + ] + ], + [ + [ + [ + 4160, + 2853 + ], + [ + 4160, + 2799 + ], + [ + 4043, + 2749 + ], + [ + 4026, + 2742 + ], + [ + 4024, + 2745 + ], + [ + 3994, + 2740 + ], + [ + 3946, + 2723 + ], + [ + 3928, + 2726 + ], + [ + 3892, + 2713 + ], + [ + 3860, + 2700 + ], + [ + 3829, + 2687 + ], + [ + 3800, + 2676 + ], + [ + 3786, + 2670 + ], + [ + 3786, + 2691 + ], + [ + 3709, + 2660 + ], + [ + 3657, + 2639 + ], + [ + 3589, + 2612 + ], + [ + 3555, + 2599 + ], + [ + 3525, + 2587 + ], + [ + 3486, + 2572 + ], + [ + 3447, + 2556 + ], + [ + 3431, + 2550 + ], + [ + 3424, + 2558 + ], + [ + 3487, + 2582 + ], + [ + 3722, + 2676 + ], + [ + 3786, + 2701 + ], + [ + 3786, + 2725 + ], + [ + 3833, + 2744 + ], + [ + 3917, + 2776 + ], + [ + 3968, + 2786 + ], + [ + 4013, + 2795 + ], + [ + 4067, + 2814 + ], + [ + 4114, + 2833 + ], + [ + 4160, + 2853 + ] + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 170303, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3921, + 1789 + ], + [ + 3986, + 1686 + ], + [ + 3951, + 1663 + ], + [ + 3882, + 1770 + ], + [ + 3921, + 1789 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117004, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3940, + 1680 + ], + [ + 3951, + 1663 + ], + [ + 3909, + 1636 + ], + [ + 3897, + 1652 + ], + [ + 3940, + 1680 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117002, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3917, + 1624 + ], + [ + 3965, + 1551 + ], + [ + 3948, + 1538 + ], + [ + 3900, + 1611 + ], + [ + 3917, + 1624 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116921, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3948, + 1538 + ], + [ + 3983, + 1485 + ], + [ + 3960, + 1468 + ], + [ + 3924, + 1522 + ], + [ + 3948, + 1538 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116923, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3953, + 1399 + ], + [ + 3992, + 1351 + ], + [ + 3963, + 1328 + ], + [ + 3936, + 1363 + ], + [ + 3940, + 1389 + ], + [ + 3953, + 1399 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116874, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3951, + 1663 + ], + [ + 4040, + 1528 + ], + [ + 4001, + 1498 + ], + [ + 3909, + 1636 + ], + [ + 3951, + 1663 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116903, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3965, + 1551 + ], + [ + 4001, + 1498 + ], + [ + 3983, + 1485 + ], + [ + 3948, + 1538 + ], + [ + 3965, + 1551 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116922, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3948, + 2349 + ], + [ + 4047, + 2129 + ], + [ + 3977, + 2092 + ], + [ + 3887, + 2280 + ], + [ + 3948, + 2349 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116364, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3971, + 2376 + ], + [ + 4028, + 2253 + ], + [ + 3997, + 2239 + ], + [ + 3948, + 2349 + ], + [ + 3971, + 2376 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116484, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3982, + 1810 + ], + [ + 3966, + 1803 + ], + [ + 3964, + 1806 + ], + [ + 3982, + 1810 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171605, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4021, + 1449 + ], + [ + 4039, + 1427 + ], + [ + 3973, + 1375 + ], + [ + 3953, + 1399 + ], + [ + 4021, + 1449 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116877, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4123, + 1428 + ], + [ + 4140, + 1406 + ], + [ + 4088, + 1364 + ], + [ + 4076, + 1380 + ], + [ + 4072, + 1385 + ], + [ + 4123, + 1428 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116894, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4115, + 1519 + ], + [ + 4160, + 1459 + ], + [ + 4160, + 1451 + ], + [ + 4123, + 1428 + ], + [ + 4074, + 1489 + ], + [ + 4115, + 1519 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116896, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4140, + 1406 + ], + [ + 4159, + 1382 + ], + [ + 4107, + 1341 + ], + [ + 4088, + 1364 + ], + [ + 4140, + 1406 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116601, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4111, + 2377 + ], + [ + 4160, + 2273 + ], + [ + 4160, + 2201 + ], + [ + 4083, + 2364 + ], + [ + 4111, + 2377 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116428, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4083, + 2364 + ], + [ + 4160, + 2201 + ], + [ + 4160, + 2188 + ], + [ + 4142, + 2178 + ], + [ + 4059, + 2353 + ], + [ + 4083, + 2364 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116429, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4099, + 2523 + ], + [ + 4160, + 2395 + ], + [ + 4160, + 2371 + ], + [ + 4122, + 2353 + ], + [ + 4111, + 2377 + ], + [ + 4063, + 2481 + ], + [ + 4099, + 2523 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116490, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 2799 + ], + [ + 4160, + 2752 + ], + [ + 4084, + 2662 + ], + [ + 4043, + 2749 + ], + [ + 4160, + 2799 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115348, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4107, + 2995 + ], + [ + 4160, + 2856 + ], + [ + 4160, + 2853 + ], + [ + 4114, + 2833 + ], + [ + 4059, + 2977 + ], + [ + 4107, + 2995 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116664, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4132, + 2561 + ], + [ + 4160, + 2502 + ], + [ + 4160, + 2395 + ], + [ + 4099, + 2523 + ], + [ + 4132, + 2561 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116492, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4138, + 3007 + ], + [ + 4160, + 2949 + ], + [ + 4160, + 2856 + ], + [ + 4107, + 2995 + ], + [ + 4138, + 3007 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115364, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 3016 + ], + [ + 4160, + 2949 + ], + [ + 4138, + 3007 + ], + [ + 4160, + 3016 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 115363, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 2026 + ], + [ + 4160, + 1980 + ], + [ + 4154, + 1976 + ], + [ + 4136, + 2013 + ], + [ + 4160, + 2026 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117031, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4146, + 2364 + ], + [ + 4160, + 2334 + ], + [ + 4160, + 2273 + ], + [ + 4122, + 2353 + ], + [ + 4146, + 2364 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116506, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4153, + 2126 + ], + [ + 4160, + 2113 + ], + [ + 4160, + 2026 + ], + [ + 4136, + 2013 + ], + [ + 4101, + 2080 + ], + [ + 4108, + 2103 + ], + [ + 4153, + 2126 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117034, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4137, + 1536 + ], + [ + 4160, + 1534 + ], + [ + 4160, + 1501 + ], + [ + 4140, + 1485 + ], + [ + 4115, + 1519 + ], + [ + 4137, + 1536 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116607, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1452 + ], + [ + 4160, + 1451 + ], + [ + 4125, + 1425 + ], + [ + 4123, + 1428 + ], + [ + 4160, + 1452 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171562, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4159, + 1382 + ], + [ + 4160, + 1381 + ], + [ + 4160, + 1334 + ], + [ + 4131, + 1311 + ], + [ + 4107, + 1341 + ], + [ + 4159, + 1382 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116545, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1501 + ], + [ + 4160, + 1459 + ], + [ + 4140, + 1485 + ], + [ + 4160, + 1501 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116605, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1451 + ], + [ + 4160, + 1382 + ], + [ + 4125, + 1425 + ], + [ + 4160, + 1451 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116603, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 2130 + ], + [ + 4160, + 2113 + ], + [ + 4153, + 2126 + ], + [ + 4160, + 2130 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117043, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1980 + ], + [ + 4160, + 1964 + ], + [ + 4154, + 1976 + ], + [ + 4160, + 1980 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 117035, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 2371 + ], + [ + 4160, + 2334 + ], + [ + 4146, + 2364 + ], + [ + 4160, + 2371 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116508, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 2594 + ], + [ + 4160, + 2502 + ], + [ + 4132, + 2561 + ], + [ + 4160, + 2594 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116515, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 3124 + ], + [ + 4160, + 3096 + ], + [ + 4127, + 3106 + ], + [ + 4160, + 3124 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 155298, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1213 + ], + [ + 4160, + 1173 + ], + [ + 4144, + 1160 + ], + [ + 4127, + 1181 + ], + [ + 4160, + 1213 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116837, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3958, + 1250 + ], + [ + 4001, + 1194 + ], + [ + 3854, + 1080 + ], + [ + 3807, + 1134 + ], + [ + 3848, + 1165 + ], + [ + 3958, + 1250 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116788, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4159, + 1275 + ], + [ + 4160, + 1274 + ], + [ + 4160, + 1213 + ], + [ + 4127, + 1181 + ], + [ + 4093, + 1223 + ], + [ + 4159, + 1275 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116790, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4047, + 1281 + ], + [ + 4100, + 1214 + ], + [ + 4069, + 1189 + ], + [ + 4017, + 1257 + ], + [ + 4047, + 1281 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116876, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3916, + 1305 + ], + [ + 3958, + 1250 + ], + [ + 3848, + 1165 + ], + [ + 3803, + 1218 + ], + [ + 3916, + 1305 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116787, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1285 + ], + [ + 4160, + 1274 + ], + [ + 4159, + 1275 + ], + [ + 4155, + 1281 + ], + [ + 4160, + 1285 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116536, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4113, + 1334 + ], + [ + 4159, + 1275 + ], + [ + 4093, + 1223 + ], + [ + 4047, + 1281 + ], + [ + 4113, + 1334 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116878, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3992, + 1351 + ], + [ + 4047, + 1281 + ], + [ + 4017, + 1257 + ], + [ + 3963, + 1328 + ], + [ + 3992, + 1351 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116875, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4160, + 1334 + ], + [ + 4160, + 1285 + ], + [ + 4155, + 1281 + ], + [ + 4131, + 1311 + ], + [ + 4160, + 1334 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116543, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1482, + 3985 + ], + [ + 1816, + 3953 + ], + [ + 1795, + 3747 + ], + [ + 1630, + 3621 + ], + [ + 1428, + 3889 + ], + [ + 1482, + 3985 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81370, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1497, + 4160 + ], + [ + 1520, + 4058 + ], + [ + 1476, + 4063 + ], + [ + 1492, + 4083 + ], + [ + 1475, + 4160 + ], + [ + 1497, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72429, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1525, + 4160 + ], + [ + 1545, + 4071 + ], + [ + 1564, + 4054 + ], + [ + 1520, + 4058 + ], + [ + 1497, + 4160 + ], + [ + 1525, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75672, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1540, + 3640 + ], + [ + 1657, + 3484 + ], + [ + 1589, + 3433 + ], + [ + 1441, + 3379 + ], + [ + 1415, + 3440 + ], + [ + 1401, + 3434 + ], + [ + 1369, + 3478 + ], + [ + 1455, + 3545 + ], + [ + 1442, + 3564 + ], + [ + 1540, + 3640 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71794, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1538, + 1598 + ], + [ + 1590, + 1518 + ], + [ + 1527, + 1482 + ], + [ + 1480, + 1564 + ], + [ + 1538, + 1598 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9640, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1438, + 1877 + ], + [ + 1621, + 1814 + ], + [ + 1618, + 1776 + ], + [ + 1636, + 1744 + ], + [ + 1725, + 1706 + ], + [ + 1662, + 1522 + ], + [ + 1595, + 1660 + ], + [ + 1520, + 1617 + ], + [ + 1329, + 1817 + ], + [ + 1438, + 1877 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116007, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1505, + 1923 + ], + [ + 1551, + 1838 + ], + [ + 1482, + 1862 + ], + [ + 1464, + 1893 + ], + [ + 1505, + 1923 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116130, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1634, + 2624 + ], + [ + 1792, + 2317 + ], + [ + 1638, + 2152 + ], + [ + 1594, + 2117 + ], + [ + 1377, + 2445 + ], + [ + 1302, + 2366 + ], + [ + 1295, + 2371 + ], + [ + 1280, + 2365 + ], + [ + 1256, + 2402 + ], + [ + 1557, + 2585 + ], + [ + 1634, + 2624 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 65489, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1464, + 1893 + ], + [ + 1482, + 1862 + ], + [ + 1438, + 1877 + ], + [ + 1464, + 1893 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116131, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1465, + 2103 + ], + [ + 1500, + 2048 + ], + [ + 1513, + 2028 + ], + [ + 1483, + 2007 + ], + [ + 1435, + 2089 + ], + [ + 1465, + 2103 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69727, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1473, + 3056 + ], + [ + 1494, + 3012 + ], + [ + 1467, + 2999 + ], + [ + 1496, + 2944 + ], + [ + 1475, + 2933 + ], + [ + 1423, + 3032 + ], + [ + 1473, + 3056 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72419, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1435, + 3010 + ], + [ + 1558, + 2772 + ], + [ + 1524, + 2769 + ], + [ + 1364, + 2681 + ], + [ + 1265, + 2862 + ], + [ + 1240, + 2920 + ], + [ + 1435, + 3010 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66608, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1445, + 2134 + ], + [ + 1465, + 2103 + ], + [ + 1369, + 2058 + ], + [ + 1353, + 2091 + ], + [ + 1445, + 2134 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69443, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1424, + 2168 + ], + [ + 1445, + 2134 + ], + [ + 1353, + 2091 + ], + [ + 1337, + 2126 + ], + [ + 1424, + 2168 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68897, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1402, + 2201 + ], + [ + 1424, + 2168 + ], + [ + 1337, + 2126 + ], + [ + 1319, + 2163 + ], + [ + 1402, + 2201 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72157, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1369, + 2058 + ], + [ + 1416, + 1954 + ], + [ + 1404, + 1946 + ], + [ + 1379, + 1998 + ], + [ + 1355, + 2052 + ], + [ + 1369, + 2058 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 68622, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1379, + 1998 + ], + [ + 1404, + 1946 + ], + [ + 1391, + 1938 + ], + [ + 1366, + 1992 + ], + [ + 1379, + 1998 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69827, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1418, + 1724 + ], + [ + 1439, + 1701 + ], + [ + 1377, + 1665 + ], + [ + 1358, + 1645 + ], + [ + 1342, + 1647 + ], + [ + 1328, + 1662 + ], + [ + 1328, + 1676 + ], + [ + 1340, + 1692 + ], + [ + 1364, + 1694 + ], + [ + 1418, + 1724 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116119, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1329, + 1817 + ], + [ + 1418, + 1724 + ], + [ + 1389, + 1708 + ], + [ + 1329, + 1817 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116116, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1377, + 1665 + ], + [ + 1365, + 1648 + ], + [ + 1360, + 1647 + ], + [ + 1377, + 1665 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221160, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1365, + 1648 + ], + [ + 1405, + 1579 + ], + [ + 1360, + 1554 + ], + [ + 1333, + 1601 + ], + [ + 1342, + 1647 + ], + [ + 1365, + 1648 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116068, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1320, + 1470 + ], + [ + 1450, + 1327 + ], + [ + 1349, + 1269 + ], + [ + 1325, + 1279 + ], + [ + 1291, + 1444 + ], + [ + 1296, + 1456 + ], + [ + 1320, + 1470 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8756, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1502, + 1636 + ], + [ + 1520, + 1617 + ], + [ + 1302, + 1490 + ], + [ + 1275, + 1518 + ], + [ + 1289, + 1512 + ], + [ + 1502, + 1636 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116035, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1407, + 1682 + ], + [ + 1452, + 1607 + ], + [ + 1405, + 1579 + ], + [ + 1365, + 1648 + ], + [ + 1377, + 1665 + ], + [ + 1407, + 1682 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116070, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1480, + 1564 + ], + [ + 1480, + 1563 + ], + [ + 1320, + 1470 + ], + [ + 1480, + 1564 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221295, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1520, + 1617 + ], + [ + 1538, + 1598 + ], + [ + 1320, + 1470 + ], + [ + 1303, + 1490 + ], + [ + 1520, + 1617 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 41, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1407, + 1682 + ], + [ + 1377, + 1665 + ], + [ + 1407, + 1683 + ], + [ + 1407, + 1682 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221137, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1406, + 2076 + ], + [ + 1457, + 1982 + ], + [ + 1416, + 1954 + ], + [ + 1369, + 2058 + ], + [ + 1406, + 2076 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69225, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1377, + 2445 + ], + [ + 1594, + 2117 + ], + [ + 1500, + 2048 + ], + [ + 1299, + 2362 + ], + [ + 1377, + 2445 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66001, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1435, + 2089 + ], + [ + 1486, + 2006 + ], + [ + 1457, + 1982 + ], + [ + 1406, + 2076 + ], + [ + 1435, + 2089 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 69654, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1439, + 1701 + ], + [ + 1502, + 1636 + ], + [ + 1452, + 1607 + ], + [ + 1407, + 1683 + ], + [ + 1439, + 1701 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116121, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1480, + 1563 + ], + [ + 1574, + 1399 + ], + [ + 1450, + 1327 + ], + [ + 1320, + 1470 + ], + [ + 1480, + 1563 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 309, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1437, + 1135 + ], + [ + 1467, + 1058 + ], + [ + 1425, + 1041 + ], + [ + 1393, + 1117 + ], + [ + 1437, + 1135 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5074, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1424, + 1168 + ], + [ + 1437, + 1135 + ], + [ + 1393, + 1117 + ], + [ + 1380, + 1149 + ], + [ + 1424, + 1168 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9149, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1400, + 975 + ], + [ + 1428, + 907 + ], + [ + 1388, + 914 + ], + [ + 1368, + 961 + ], + [ + 1400, + 975 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5693, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1371, + 1042 + ], + [ + 1400, + 975 + ], + [ + 1368, + 961 + ], + [ + 1340, + 1028 + ], + [ + 1371, + 1042 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5624, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1467, + 1058 + ], + [ + 1492, + 992 + ], + [ + 1453, + 976 + ], + [ + 1425, + 1041 + ], + [ + 1467, + 1058 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4897, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1450, + 1327 + ], + [ + 1485, + 1288 + ], + [ + 1454, + 1270 + ], + [ + 1429, + 1315 + ], + [ + 1450, + 1327 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11753, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1492, + 992 + ], + [ + 1509, + 948 + ], + [ + 1481, + 938 + ], + [ + 1499, + 887 + ], + [ + 1487, + 895 + ], + [ + 1453, + 976 + ], + [ + 1492, + 992 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 4948, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1485, + 1288 + ], + [ + 1499, + 1273 + ], + [ + 1495, + 1276 + ], + [ + 1485, + 1288 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221235, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1485, + 1288 + ], + [ + 1545, + 1220 + ], + [ + 1495, + 1199 + ], + [ + 1454, + 1270 + ], + [ + 1485, + 1288 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12312, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1509, + 948 + ], + [ + 1536, + 877 + ], + [ + 1499, + 887 + ], + [ + 1481, + 938 + ], + [ + 1509, + 948 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7034, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1504, + 1299 + ], + [ + 1549, + 1222 + ], + [ + 1485, + 1288 + ], + [ + 1504, + 1299 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12367, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1544, + 1002 + ], + [ + 1594, + 875 + ], + [ + 1583, + 868 + ], + [ + 1536, + 877 + ], + [ + 1495, + 983 + ], + [ + 1544, + 1002 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5839, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1629, + 923 + ], + [ + 1657, + 851 + ], + [ + 1599, + 864 + ], + [ + 1581, + 907 + ], + [ + 1629, + 923 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6480, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1651, + 1207 + ], + [ + 1665, + 1175 + ], + [ + 1671, + 1159 + ], + [ + 1619, + 1137 + ], + [ + 1582, + 1178 + ], + [ + 1651, + 1207 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5274, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1630, + 1256 + ], + [ + 1651, + 1207 + ], + [ + 1582, + 1178 + ], + [ + 1549, + 1222 + ], + [ + 1630, + 1256 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11351, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1604, + 988 + ], + [ + 1629, + 923 + ], + [ + 1581, + 907 + ], + [ + 1557, + 970 + ], + [ + 1604, + 988 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5487, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1594, + 875 + ], + [ + 1599, + 864 + ], + [ + 1583, + 868 + ], + [ + 1594, + 875 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6635, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1590, + 1348 + ], + [ + 1630, + 1256 + ], + [ + 1549, + 1222 + ], + [ + 1504, + 1299 + ], + [ + 1590, + 1348 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10872, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1585, + 1516 + ], + [ + 1583, + 1514 + ], + [ + 1527, + 1482 + ], + [ + 1585, + 1516 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221297, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1598, + 1663 + ], + [ + 1608, + 1639 + ], + [ + 1538, + 1598 + ], + [ + 1520, + 1617 + ], + [ + 1598, + 1663 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10203, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1538, + 1598 + ], + [ + 1554, + 1581 + ], + [ + 1590, + 1518 + ], + [ + 1538, + 1598 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221133, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1673, + 1456 + ], + [ + 1691, + 1437 + ], + [ + 1642, + 1409 + ], + [ + 1655, + 1386 + ], + [ + 1485, + 1288 + ], + [ + 1450, + 1327 + ], + [ + 1673, + 1456 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 108, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1554, + 1582 + ], + [ + 1605, + 1527 + ], + [ + 1590, + 1518 + ], + [ + 1554, + 1582 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 12418, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1583, + 1514 + ], + [ + 1631, + 1432 + ], + [ + 1574, + 1399 + ], + [ + 1527, + 1482 + ], + [ + 1583, + 1514 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9197, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1539, + 1948 + ], + [ + 1604, + 1827 + ], + [ + 1596, + 1823 + ], + [ + 1551, + 1838 + ], + [ + 1505, + 1923 + ], + [ + 1539, + 1948 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116129, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1594, + 2117 + ], + [ + 1599, + 2110 + ], + [ + 1513, + 2028 + ], + [ + 1500, + 2048 + ], + [ + 1594, + 2117 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71611, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1657, + 3484 + ], + [ + 1771, + 3333 + ], + [ + 1504, + 3208 + ], + [ + 1425, + 3375 + ], + [ + 1441, + 3379 + ], + [ + 1589, + 3433 + ], + [ + 1657, + 3484 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73677, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1604, + 1827 + ], + [ + 1649, + 1852 + ], + [ + 1588, + 1985 + ], + [ + 1651, + 1850 + ], + [ + 1604, + 1827 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221184, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1638, + 2152 + ], + [ + 1599, + 2110 + ], + [ + 1594, + 2117 + ], + [ + 1638, + 2152 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 71721, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1588, + 1985 + ], + [ + 1649, + 1852 + ], + [ + 1604, + 1827 + ], + [ + 1539, + 1948 + ], + [ + 1588, + 1985 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116126, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1608, + 1639 + ], + [ + 1662, + 1523 + ], + [ + 1648, + 1482 + ], + [ + 1538, + 1598 + ], + [ + 1608, + 1639 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 9955, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1623, + 1816 + ], + [ + 1620, + 1801 + ], + [ + 1621, + 1814 + ], + [ + 1623, + 1816 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221178, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1619, + 1780 + ], + [ + 1625, + 1763 + ], + [ + 1618, + 1776 + ], + [ + 1619, + 1780 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221167, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1651, + 1850 + ], + [ + 1621, + 1814 + ], + [ + 1596, + 1823 + ], + [ + 1651, + 1850 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116128, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1635, + 1747 + ], + [ + 1640, + 1742 + ], + [ + 1636, + 1744 + ], + [ + 1635, + 1747 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221170, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1605, + 1527 + ], + [ + 1673, + 1456 + ], + [ + 1631, + 1432 + ], + [ + 1583, + 1514 + ], + [ + 1605, + 1527 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10374, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1655, + 1386 + ], + [ + 1696, + 1315 + ], + [ + 1619, + 1281 + ], + [ + 1590, + 1348 + ], + [ + 1655, + 1386 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10544, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1662, + 1523 + ], + [ + 1689, + 1465 + ], + [ + 1673, + 1456 + ], + [ + 1648, + 1482 + ], + [ + 1662, + 1523 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10003, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1692, + 1437 + ], + [ + 1709, + 1419 + ], + [ + 1654, + 1387 + ], + [ + 1642, + 1409 + ], + [ + 1692, + 1437 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116078, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1699, + 1442 + ], + [ + 1700, + 1441 + ], + [ + 1692, + 1437 + ], + [ + 1699, + 1442 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221323, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1674, + 1857 + ], + [ + 1649, + 1847 + ], + [ + 1651, + 1850 + ], + [ + 1674, + 1857 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221196, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1612, + 2003 + ], + [ + 1658, + 1903 + ], + [ + 1677, + 1912 + ], + [ + 1698, + 1867 + ], + [ + 1682, + 1873 + ], + [ + 1674, + 1857 + ], + [ + 1651, + 1850 + ], + [ + 1588, + 1985 + ], + [ + 1612, + 2003 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116125, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1713, + 3167 + ], + [ + 1814, + 2927 + ], + [ + 1845, + 2852 + ], + [ + 1589, + 2713 + ], + [ + 1475, + 2933 + ], + [ + 1496, + 2944 + ], + [ + 1467, + 2999 + ], + [ + 1494, + 3012 + ], + [ + 1473, + 3056 + ], + [ + 1713, + 3167 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66202, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1771, + 3333 + ], + [ + 1781, + 3321 + ], + [ + 1777, + 3307 + ], + [ + 1515, + 3185 + ], + [ + 1504, + 3208 + ], + [ + 1771, + 3333 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72336, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1682, + 1873 + ], + [ + 1698, + 1867 + ], + [ + 1704, + 1855 + ], + [ + 1674, + 1857 + ], + [ + 1682, + 1873 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116122, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1717, + 1981 + ], + [ + 1764, + 1881 + ], + [ + 1704, + 1855 + ], + [ + 1708, + 1864 + ], + [ + 1698, + 1867 + ], + [ + 1677, + 1912 + ], + [ + 1658, + 1903 + ], + [ + 1639, + 1945 + ], + [ + 1717, + 1981 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116123, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1698, + 1867 + ], + [ + 1708, + 1864 + ], + [ + 1704, + 1855 + ], + [ + 1698, + 1867 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116132, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1675, + 1857 + ], + [ + 1768, + 1833 + ], + [ + 1725, + 1706 + ], + [ + 1653, + 1731 + ], + [ + 1631, + 1750 + ], + [ + 1617, + 1784 + ], + [ + 1623, + 1820 + ], + [ + 1644, + 1845 + ], + [ + 1675, + 1857 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116127, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1689, + 1465 + ], + [ + 1699, + 1442 + ], + [ + 1691, + 1437 + ], + [ + 1673, + 1456 + ], + [ + 1689, + 1465 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10461, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1702, + 1415 + ], + [ + 1745, + 1340 + ], + [ + 1694, + 1316 + ], + [ + 1654, + 1387 + ], + [ + 1702, + 1415 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116080, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1677, + 1857 + ], + [ + 1704, + 1855 + ], + [ + 1768, + 1833 + ], + [ + 1677, + 1857 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221194, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1720, + 1693 + ], + [ + 1793, + 1539 + ], + [ + 1789, + 1522 + ], + [ + 1689, + 1464 + ], + [ + 1662, + 1522 + ], + [ + 1720, + 1693 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116075, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1753, + 1182 + ], + [ + 1764, + 1156 + ], + [ + 1687, + 1123 + ], + [ + 1676, + 1149 + ], + [ + 1753, + 1182 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5326, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1742, + 1208 + ], + [ + 1753, + 1182 + ], + [ + 1676, + 1149 + ], + [ + 1665, + 1175 + ], + [ + 1742, + 1208 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 11421, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1722, + 1254 + ], + [ + 1742, + 1208 + ], + [ + 1665, + 1175 + ], + [ + 1645, + 1221 + ], + [ + 1722, + 1254 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10996, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1639, + 1001 + ], + [ + 1671, + 924 + ], + [ + 1685, + 931 + ], + [ + 1726, + 837 + ], + [ + 1657, + 851 + ], + [ + 1604, + 988 + ], + [ + 1639, + 1001 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6372, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1696, + 1315 + ], + [ + 1722, + 1254 + ], + [ + 1645, + 1221 + ], + [ + 1619, + 1281 + ], + [ + 1696, + 1315 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 10927, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1671, + 1159 + ], + [ + 1699, + 1094 + ], + [ + 1669, + 1081 + ], + [ + 1619, + 1137 + ], + [ + 1671, + 1159 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5719, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1764, + 1156 + ], + [ + 1787, + 1104 + ], + [ + 1709, + 1071 + ], + [ + 1687, + 1123 + ], + [ + 1764, + 1156 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5768, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1770, + 927 + ], + [ + 1817, + 818 + ], + [ + 1726, + 837 + ], + [ + 1700, + 897 + ], + [ + 1770, + 927 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6963, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1787, + 1104 + ], + [ + 1809, + 1053 + ], + [ + 1731, + 1020 + ], + [ + 1709, + 1071 + ], + [ + 1787, + 1104 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5817, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1809, + 1053 + ], + [ + 1829, + 1005 + ], + [ + 1767, + 972 + ], + [ + 1731, + 1020 + ], + [ + 1809, + 1053 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6192, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1866, + 1085 + ], + [ + 1918, + 988 + ], + [ + 1890, + 974 + ], + [ + 1839, + 1070 + ], + [ + 1866, + 1085 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6349, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1892, + 975 + ], + [ + 1930, + 900 + ], + [ + 1866, + 866 + ], + [ + 1831, + 943 + ], + [ + 1892, + 975 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6464, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1839, + 1070 + ], + [ + 1890, + 974 + ], + [ + 1822, + 938 + ], + [ + 1799, + 989 + ], + [ + 1829, + 1005 + ], + [ + 1809, + 1053 + ], + [ + 1839, + 1070 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6298, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1767, + 972 + ], + [ + 1872, + 853 + ], + [ + 1908, + 773 + ], + [ + 1817, + 818 + ], + [ + 1754, + 965 + ], + [ + 1767, + 972 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 454, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1771, + 1353 + ], + [ + 1969, + 1143 + ], + [ + 1809, + 1054 + ], + [ + 1694, + 1316 + ], + [ + 1771, + 1353 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116015, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1799, + 1471 + ], + [ + 1846, + 1388 + ], + [ + 1798, + 1470 + ], + [ + 1799, + 1471 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221328, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1867, + 1398 + ], + [ + 1890, + 1372 + ], + [ + 1854, + 1264 + ], + [ + 1771, + 1353 + ], + [ + 1867, + 1398 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116073, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1821, + 1962 + ], + [ + 1873, + 1943 + ], + [ + 1863, + 1911 + ], + [ + 1881, + 1905 + ], + [ + 1878, + 1895 + ], + [ + 1874, + 1885 + ], + [ + 1805, + 1914 + ], + [ + 1821, + 1962 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116134, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1874, + 2032 + ], + [ + 1919, + 2001 + ], + [ + 1882, + 1894 + ], + [ + 1878, + 1895 + ], + [ + 1881, + 1905 + ], + [ + 1863, + 1911 + ], + [ + 1873, + 1943 + ], + [ + 1821, + 1962 + ], + [ + 1805, + 1914 + ], + [ + 1797, + 1917 + ], + [ + 1815, + 1969 + ], + [ + 1874, + 2032 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116133, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1846, + 1497 + ], + [ + 1895, + 1411 + ], + [ + 1846, + 1388 + ], + [ + 1799, + 1471 + ], + [ + 1846, + 1497 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116081, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1747, + 1772 + ], + [ + 1995, + 1687 + ], + [ + 1904, + 1416 + ], + [ + 1895, + 1411 + ], + [ + 1846, + 1497 + ], + [ + 1856, + 1526 + ], + [ + 1745, + 1766 + ], + [ + 1747, + 1772 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116011, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1904, + 1416 + ], + [ + 1890, + 1372 + ], + [ + 1867, + 1398 + ], + [ + 1895, + 1411 + ], + [ + 1904, + 1416 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116082, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1904, + 1416 + ], + [ + 1899, + 1397 + ], + [ + 1890, + 1372 + ], + [ + 1904, + 1416 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221337, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1899, + 1397 + ], + [ + 1904, + 1391 + ], + [ + 1910, + 1348 + ], + [ + 1890, + 1372 + ], + [ + 1899, + 1397 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116086, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1912, + 1419 + ], + [ + 1904, + 1391 + ], + [ + 1899, + 1397 + ], + [ + 1904, + 1416 + ], + [ + 1912, + 1419 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116084, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1302, + 1490 + ], + [ + 1283, + 1478 + ], + [ + 1291, + 1444 + ], + [ + 1291, + 1440 + ], + [ + 1260, + 1465 + ], + [ + 1244, + 1544 + ], + [ + 1192, + 1796 + ], + [ + 1299, + 1889 + ], + [ + 1314, + 1896 + ], + [ + 1351, + 1915 + ], + [ + 1391, + 1938 + ], + [ + 1404, + 1946 + ], + [ + 1416, + 1954 + ], + [ + 1457, + 1982 + ], + [ + 1486, + 2006 + ], + [ + 1485, + 2009 + ], + [ + 1513, + 2028 + ], + [ + 1599, + 2110 + ], + [ + 1638, + 2152 + ], + [ + 1774, + 2298 + ], + [ + 2167, + 2636 + ], + [ + 2269, + 2717 + ], + [ + 2317, + 2744 + ], + [ + 2407, + 2784 + ], + [ + 2547, + 2842 + ], + [ + 2565, + 2812 + ], + [ + 2482, + 2773 + ], + [ + 2342, + 2721 + ], + [ + 2256, + 2665 + ], + [ + 2220, + 2626 + ], + [ + 1894, + 2273 + ], + [ + 1712, + 2077 + ], + [ + 1612, + 2003 + ], + [ + 1588, + 1985 + ], + [ + 1539, + 1948 + ], + [ + 1505, + 1923 + ], + [ + 1464, + 1893 + ], + [ + 1438, + 1877 + ], + [ + 1329, + 1817 + ], + [ + 1283, + 1796 + ], + [ + 1250, + 1781 + ], + [ + 1232, + 1774 + ], + [ + 1225, + 1758 + ], + [ + 1236, + 1704 + ], + [ + 1248, + 1645 + ], + [ + 1261, + 1584 + ], + [ + 1275, + 1518 + ], + [ + 1283, + 1479 + ], + [ + 1302, + 1490 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221310, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1900, + 3097 + ], + [ + 1910, + 2956 + ], + [ + 1893, + 2972 + ], + [ + 1876, + 2963 + ], + [ + 1900, + 3097 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73797, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1930, + 3268 + ], + [ + 1900, + 3097 + ], + [ + 1889, + 3249 + ], + [ + 1930, + 3268 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 73710, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1889, + 3612 + ], + [ + 1998, + 3409 + ], + [ + 1906, + 3366 + ], + [ + 1802, + 3558 + ], + [ + 1889, + 3612 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75359, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1240, + 2920 + ], + [ + 1230, + 2942 + ], + [ + 1210, + 2933 + ], + [ + 1454, + 3156 + ], + [ + 1515, + 3185 + ], + [ + 1777, + 3307 + ], + [ + 1781, + 3321 + ], + [ + 1771, + 3333 + ], + [ + 1720, + 3400 + ], + [ + 1765, + 3442 + ], + [ + 1775, + 3428 + ], + [ + 1803, + 3391 + ], + [ + 1833, + 3351 + ], + [ + 1860, + 3345 + ], + [ + 1906, + 3366 + ], + [ + 1998, + 3409 + ], + [ + 2054, + 3435 + ], + [ + 2106, + 3459 + ], + [ + 2316, + 3556 + ], + [ + 2389, + 3589 + ], + [ + 2461, + 3622 + ], + [ + 2478, + 3630 + ], + [ + 2547, + 3553 + ], + [ + 2319, + 3447 + ], + [ + 2168, + 3377 + ], + [ + 2085, + 3340 + ], + [ + 2031, + 3315 + ], + [ + 1979, + 3291 + ], + [ + 1930, + 3268 + ], + [ + 1889, + 3249 + ], + [ + 1713, + 3167 + ], + [ + 1473, + 3056 + ], + [ + 1423, + 3032 + ], + [ + 1435, + 3010 + ], + [ + 1240, + 2920 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 171570, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1867, + 3439 + ], + [ + 1906, + 3366 + ], + [ + 1860, + 3345 + ], + [ + 1833, + 3351 + ], + [ + 1803, + 3391 + ], + [ + 1867, + 3439 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75588, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1845, + 3479 + ], + [ + 1867, + 3439 + ], + [ + 1803, + 3391 + ], + [ + 1775, + 3428 + ], + [ + 1845, + 3479 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75467, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1889, + 3249 + ], + [ + 1900, + 3097 + ], + [ + 1876, + 2963 + ], + [ + 1814, + 2927 + ], + [ + 1713, + 3167 + ], + [ + 1889, + 3249 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67874, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1823, + 3520 + ], + [ + 1845, + 3479 + ], + [ + 1775, + 3428 + ], + [ + 1748, + 3465 + ], + [ + 1823, + 3520 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75413, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1876, + 2776 + ], + [ + 1983, + 2524 + ], + [ + 1792, + 2317 + ], + [ + 1634, + 2624 + ], + [ + 1626, + 2640 + ], + [ + 1876, + 2776 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66051, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2600, + 3385 + ], + [ + 2694, + 3249 + ], + [ + 2639, + 3208 + ], + [ + 2664, + 3173 + ], + [ + 2518, + 3054 + ], + [ + 2391, + 3029 + ], + [ + 2216, + 2917 + ], + [ + 2196, + 2903 + ], + [ + 2199, + 2896 + ], + [ + 2028, + 2824 + ], + [ + 1973, + 2828 + ], + [ + 1626, + 2640 + ], + [ + 1634, + 2624 + ], + [ + 1557, + 2585 + ], + [ + 1256, + 2402 + ], + [ + 1046, + 2338 + ], + [ + 932, + 2560 + ], + [ + 1209, + 2630 + ], + [ + 1364, + 2681 + ], + [ + 1524, + 2769 + ], + [ + 1558, + 2772 + ], + [ + 1589, + 2713 + ], + [ + 1845, + 2852 + ], + [ + 1814, + 2927 + ], + [ + 1893, + 2972 + ], + [ + 1910, + 2956 + ], + [ + 2046, + 3047 + ], + [ + 2039, + 3065 + ], + [ + 2119, + 3098 + ], + [ + 2301, + 3204 + ], + [ + 2523, + 3331 + ], + [ + 2600, + 3385 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 66111, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1800, + 1528 + ], + [ + 1851, + 1513 + ], + [ + 1846, + 1497 + ], + [ + 1798, + 1470 + ], + [ + 1762, + 1506 + ], + [ + 1800, + 1528 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116087, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1798, + 1470 + ], + [ + 1846, + 1388 + ], + [ + 1795, + 1364 + ], + [ + 1751, + 1443 + ], + [ + 1798, + 1470 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116072, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1745, + 1766 + ], + [ + 1856, + 1526 + ], + [ + 1851, + 1513 + ], + [ + 1800, + 1528 + ], + [ + 1789, + 1522 + ], + [ + 1793, + 1539 + ], + [ + 1720, + 1693 + ], + [ + 1745, + 1766 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116074, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1829, + 2203 + ], + [ + 1908, + 2128 + ], + [ + 1855, + 2071 + ], + [ + 1885, + 2044 + ], + [ + 1815, + 1969 + ], + [ + 1768, + 1833 + ], + [ + 1704, + 1855 + ], + [ + 1764, + 1881 + ], + [ + 1717, + 1981 + ], + [ + 1639, + 1945 + ], + [ + 1612, + 2003 + ], + [ + 1712, + 2077 + ], + [ + 1829, + 2203 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116034, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1751, + 1443 + ], + [ + 1795, + 1364 + ], + [ + 1771, + 1353 + ], + [ + 1709, + 1419 + ], + [ + 1751, + 1443 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116076, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1762, + 1506 + ], + [ + 1798, + 1470 + ], + [ + 1709, + 1419 + ], + [ + 1692, + 1437 + ], + [ + 1700, + 1441 + ], + [ + 1689, + 1464 + ], + [ + 1762, + 1506 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116077, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1709, + 1419 + ], + [ + 1771, + 1353 + ], + [ + 1745, + 1340 + ], + [ + 1702, + 1415 + ], + [ + 1709, + 1419 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116079, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1802, + 3558 + ], + [ + 1823, + 3520 + ], + [ + 1748, + 3465 + ], + [ + 1717, + 3505 + ], + [ + 1802, + 3558 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 75012, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1795, + 3747 + ], + [ + 1889, + 3612 + ], + [ + 1717, + 3505 + ], + [ + 1630, + 3621 + ], + [ + 1795, + 3747 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 81425, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1936, + 4160 + ], + [ + 1933, + 4108 + ], + [ + 1744, + 4127 + ], + [ + 1747, + 4158 + ], + [ + 1729, + 4160 + ], + [ + 1936, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82874, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1816, + 3953 + ], + [ + 2079, + 3927 + ], + [ + 2139, + 3800 + ], + [ + 1889, + 3612 + ], + [ + 1795, + 3747 + ], + [ + 1816, + 3953 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 82105, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1997, + 3693 + ], + [ + 2075, + 3526 + ], + [ + 1965, + 3470 + ], + [ + 1889, + 3612 + ], + [ + 1997, + 3693 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76244, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1729, + 4160 + ], + [ + 1747, + 4158 + ], + [ + 1744, + 4127 + ], + [ + 1933, + 4108 + ], + [ + 1936, + 4160 + ], + [ + 2550, + 4160 + ], + [ + 2648, + 3949 + ], + [ + 1564, + 4054 + ], + [ + 1545, + 4071 + ], + [ + 1525, + 4160 + ], + [ + 1729, + 4160 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 80670, + "type": "Feature" + }, + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 2178, + 3827 + ], + [ + 1997, + 3693 + ], + [ + 2139, + 3800 + ], + [ + 2178, + 3827 + ] + ] + ], + [ + [ + [ + 2178, + 3827 + ], + [ + 2179, + 3828 + ], + [ + 2181, + 3823 + ], + [ + 2180, + 3822 + ], + [ + 2178, + 3827 + ] + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 154380, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2075, + 3526 + ], + [ + 2106, + 3459 + ], + [ + 2054, + 3435 + ], + [ + 2035, + 3481 + ], + [ + 2017, + 3498 + ], + [ + 2075, + 3526 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76194, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2198, + 2896 + ], + [ + 2249, + 2785 + ], + [ + 2186, + 2749 + ], + [ + 1983, + 2524 + ], + [ + 1876, + 2776 + ], + [ + 1973, + 2828 + ], + [ + 2028, + 2824 + ], + [ + 2198, + 2896 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67328, + "type": "Feature" + }, + { + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 2078, + 1956 + ], + [ + 2078, + 1948 + ], + [ + 2073, + 1954 + ], + [ + 2076, + 1953 + ], + [ + 2078, + 1956 + ] + ] + ], + [ + [ + [ + 2081, + 1959 + ], + [ + 2107, + 1992 + ], + [ + 2109, + 1989 + ], + [ + 2081, + 1959 + ] + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221257, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2028, + 1784 + ], + [ + 2077, + 1940 + ], + [ + 2077, + 1933 + ], + [ + 2028, + 1784 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221163, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2078, + 1956 + ], + [ + 2081, + 1939 + ], + [ + 2013, + 1737 + ], + [ + 2077, + 1933 + ], + [ + 2078, + 1956 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116136, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2035, + 1643 + ], + [ + 2012, + 1621 + ], + [ + 2014, + 1625 + ], + [ + 2035, + 1643 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221141, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2003, + 2170 + ], + [ + 2144, + 2038 + ], + [ + 2076, + 1953 + ], + [ + 1967, + 1995 + ], + [ + 1964, + 1985 + ], + [ + 1919, + 2001 + ], + [ + 1874, + 2032 + ], + [ + 2003, + 2170 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116037, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1967, + 1995 + ], + [ + 2068, + 1960 + ], + [ + 2079, + 1946 + ], + [ + 1964, + 1985 + ], + [ + 1967, + 1995 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116135, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2031, + 3315 + ], + [ + 2111, + 3122 + ], + [ + 2056, + 3101 + ], + [ + 1979, + 3291 + ], + [ + 2031, + 3315 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 72567, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1979, + 3291 + ], + [ + 2056, + 3101 + ], + [ + 2111, + 3122 + ], + [ + 2121, + 3099 + ], + [ + 2039, + 3065 + ], + [ + 2046, + 3047 + ], + [ + 1910, + 2956 + ], + [ + 1900, + 3097 + ], + [ + 1930, + 3268 + ], + [ + 1979, + 3291 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 67206, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2017, + 3498 + ], + [ + 2035, + 3481 + ], + [ + 2054, + 3435 + ], + [ + 1998, + 3409 + ], + [ + 1965, + 3470 + ], + [ + 2017, + 3498 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 76142, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1894, + 2273 + ], + [ + 2003, + 2170 + ], + [ + 1885, + 2044 + ], + [ + 1855, + 2071 + ], + [ + 1908, + 2128 + ], + [ + 1829, + 2203 + ], + [ + 1894, + 2273 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116124, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1919, + 2001 + ], + [ + 2079, + 1946 + ], + [ + 2013, + 1737 + ], + [ + 1995, + 1687 + ], + [ + 1747, + 1772 + ], + [ + 1797, + 1917 + ], + [ + 1874, + 1885 + ], + [ + 1919, + 2001 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116036, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1950, + 1437 + ], + [ + 1934, + 1386 + ], + [ + 1936, + 1367 + ], + [ + 1947, + 1347 + ], + [ + 1904, + 1391 + ], + [ + 1912, + 1419 + ], + [ + 1950, + 1437 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116085, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1947, + 1347 + ], + [ + 1940, + 1359 + ], + [ + 1963, + 1330 + ], + [ + 1947, + 1347 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221247, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1938, + 1397 + ], + [ + 1938, + 1364 + ], + [ + 1936, + 1367 + ], + [ + 1934, + 1386 + ], + [ + 1938, + 1397 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221334, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1990, + 1674 + ], + [ + 2066, + 1647 + ], + [ + 2035, + 1643 + ], + [ + 2014, + 1625 + ], + [ + 1950, + 1437 + ], + [ + 1904, + 1416 + ], + [ + 1990, + 1674 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116083, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1982, + 869 + ], + [ + 2061, + 698 + ], + [ + 2006, + 671 + ], + [ + 1970, + 720 + ], + [ + 1981, + 730 + ], + [ + 1929, + 843 + ], + [ + 1982, + 869 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 509, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2000, + 1032 + ], + [ + 2041, + 952 + ], + [ + 1990, + 927 + ], + [ + 1950, + 1006 + ], + [ + 2000, + 1032 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7279, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1950, + 1006 + ], + [ + 1990, + 927 + ], + [ + 1988, + 926 + ], + [ + 1950, + 1006 + ] + ] + ] + }, + "properties": { + "insee_code": "92063", + "forfait_mode": 1 + }, + "id": 221223, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1966, + 1141 + ], + [ + 2018, + 1041 + ], + [ + 1964, + 1013 + ], + [ + 1913, + 1111 + ], + [ + 1966, + 1141 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7229, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1953, + 792 + ], + [ + 1981, + 730 + ], + [ + 1970, + 720 + ], + [ + 1910, + 772 + ], + [ + 1953, + 792 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7926, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1960, + 915 + ], + [ + 1982, + 869 + ], + [ + 1929, + 843 + ], + [ + 1908, + 889 + ], + [ + 1960, + 915 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8777, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1950, + 1006 + ], + [ + 1988, + 926 + ], + [ + 1930, + 900 + ], + [ + 1892, + 975 + ], + [ + 1950, + 1006 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6912, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1890, + 1372 + ], + [ + 2017, + 1228 + ], + [ + 1949, + 1164 + ], + [ + 1854, + 1264 + ], + [ + 1890, + 1372 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116044, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1913, + 1111 + ], + [ + 1964, + 1013 + ], + [ + 1918, + 988 + ], + [ + 1866, + 1085 + ], + [ + 1913, + 1111 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 6864, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1929, + 843 + ], + [ + 1953, + 792 + ], + [ + 1908, + 773 + ], + [ + 1886, + 822 + ], + [ + 1929, + 843 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7567, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1966, + 1141 + ], + [ + 2048, + 1057 + ], + [ + 2018, + 1041 + ], + [ + 1966, + 1141 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7631, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2017, + 1169 + ], + [ + 2067, + 1067 + ], + [ + 2048, + 1057 + ], + [ + 1968, + 1142 + ], + [ + 2017, + 1169 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 5924, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2061, + 961 + ], + [ + 2082, + 919 + ], + [ + 2007, + 884 + ], + [ + 1988, + 926 + ], + [ + 2061, + 961 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 8959, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2061, + 698 + ], + [ + 2112, + 586 + ], + [ + 2070, + 569 + ], + [ + 2045, + 580 + ], + [ + 2006, + 671 + ], + [ + 2061, + 698 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 798, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1988, + 926 + ], + [ + 2139, + 597 + ], + [ + 2112, + 586 + ], + [ + 1960, + 915 + ], + [ + 1988, + 926 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 218, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2082, + 919 + ], + [ + 2106, + 869 + ], + [ + 2030, + 833 + ], + [ + 2007, + 884 + ], + [ + 2082, + 919 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7494, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2048, + 1057 + ], + [ + 2097, + 1006 + ], + [ + 2108, + 983 + ], + [ + 2041, + 952 + ], + [ + 2000, + 1032 + ], + [ + 2048, + 1057 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7686, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2067, + 1067 + ], + [ + 2097, + 1006 + ], + [ + 2048, + 1057 + ], + [ + 2067, + 1067 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 7763, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2017, + 1228 + ], + [ + 2224, + 995 + ], + [ + 2200, + 925 + ], + [ + 2161, + 937 + ], + [ + 2113, + 989 + ], + [ + 2022, + 1172 + ], + [ + 1969, + 1143 + ], + [ + 1949, + 1164 + ], + [ + 2017, + 1228 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116016, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1904, + 1391 + ], + [ + 1963, + 1330 + ], + [ + 2121, + 1165 + ], + [ + 2266, + 1120 + ], + [ + 2239, + 1041 + ], + [ + 2240, + 1070 + ], + [ + 2226, + 1093 + ], + [ + 2105, + 1140 + ], + [ + 2017, + 1228 + ], + [ + 1910, + 1348 + ], + [ + 1904, + 1391 + ] + ] + ] + }, + "properties": { + "insee_code": "92040", + "forfait_mode": 1 + }, + "id": 116013, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2106, + 869 + ], + [ + 2151, + 776 + ], + [ + 2073, + 741 + ], + [ + 2030, + 833 + ], + [ + 2106, + 869 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 679, + "type": "Feature" + }, + { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2081, + 508 + ], + [ + 2112, + 409 + ], + [ + 2116, + 397 + ], + [ + 2073, + 384 + ], + [ + 2061, + 484 + ], + [ + 2074, + 505 + ], + [ + 2081, + 508 + ] + ] + ] + }, + "properties": { + "insee_code": "92023", + "forfait_mode": 1 + }, + "id": 34910, + "type": "Feature" + } + ], + "type": "FeatureCollection" + } +} diff --git a/mvt_decode/out.txt b/mvt_decode/out.txt new file mode 100644 index 0000000..08523e3 --- /dev/null +++ b/mvt_decode/out.txt @@ -0,0 +1 @@ +{'address': {'extent': 4096, 'version': 2, 'features': [{'geometry': {'type': 'Point', 'coordinates': [3602, 48]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '48', 'building_ref': 'IMB/92040/C/8987', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95193, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 1514]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '55', 'building_ref': 'IMB/92040/C/8773', 'street_ext': 'B', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99311, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3551, 1819]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '2', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99303, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 1742]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '6', 'building_ref': 'IMB/92040/S/9534', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97515, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 1707]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '8', 'building_ref': 'IMB/92040/S/9103', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100395, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3578, 1984]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '51', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95161, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 2135]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '42', 'building_ref': 'IMB/92040/S/8809', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95168, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 2226]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '38', 'building_ref': 'IMB/92040/C/8804', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95169, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 2047]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '46', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95099, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 2527]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '29', 'building_ref': 'IMB/92040/S/8661', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95100, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 2883]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '22', 'building_ref': 'IMB/92040/S/8959', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100288, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 2979]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '38', 'building_ref': 'IMB/92040/S/9341', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100289, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 3096]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '37', 'building_ref': 'IMB/92040/C/9354', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100290, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 3452]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '15', 'building_ref': 'IMB/92040/S/8594', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97516, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 2979]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '38', 'building_ref': 'IMB/92040/S/9328', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95170, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 3096]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '39', 'building_ref': 'IMB/92040/C/9343', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95171, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 3452]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '13', 'building_ref': 'IMB/92040/S/8593', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100396, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3573, 2792]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '23', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97626, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3573, 2607]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '27', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99370, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3602, 2883]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '20', 'building_ref': 'IMB/92040/S/8957', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99395, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3602, 3437]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '11', 'building_ref': 'IMB/92040/C/8591', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97651, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 3101]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '39', 'building_ref': 'IMB/92040/S/9344', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100718, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 2990]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '40', 'building_ref': 'IMB/92040/X/00KE', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99468, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 3209]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '39', 'building_ref': 'IMB/92040/X/00KG', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97776, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 3277]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '39', 'building_ref': 'IMB/92040/S/9345', 'street_ext': 'T', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95572, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 3445]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '9', 'building_ref': 'IMB/92040/S/8598', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95573, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 2794]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '21', 'building_ref': 'IMB/92040/S/8958', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100717, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3624, 2627]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '25', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97785, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 2216]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '36', 'building_ref': 'IMB/92040/C/8803', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100716, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3600, 1891]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '56', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95189, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3607, 2017]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '49', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97755, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3602, 1682]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '10', 'building_ref': 'IMB/92040/S/9105', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97650, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 1656]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '12', 'building_ref': 'IMB/92040/S/9107', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100715, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 1839]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '1', 'building_ref': 'IMB/92040/S/9169', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97775, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3626, 1776]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '3', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99479, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 1636]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '14', 'building_ref': 'IMB/92040/S/9109', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98159, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 1600]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '16', 'building_ref': 'IMB/92040/S/9059', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95622, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 2236]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '34', 'building_ref': 'IMB/92040/S/8801', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95623, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3652, 1913]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '54', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95612, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3648, 2647]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '32', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95611, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3655, 2644]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '30', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98185, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 2903]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '18', 'building_ref': 'IMB/92040/S/8955', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98160, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 3101]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '41', 'building_ref': 'IMB/92040/C/9348', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95594, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [56, 2191]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '141', 'building_ref': 'IMB/92040/C/0402', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 82229, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-8, 1984]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '5', 'building_ref': 'IMB/92040/X/00RQ', 'street_ext': 'D', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 81589, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-8, 1668]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '20', 'building_ref': 'IMB/92040/C/9887', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 81588, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-13, 1099]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '24', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82192, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-37, 1144]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '26', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82036, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-51, 769]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480418', 'street_number': '1', 'street': 'IMPASSE DES BRILLANTS', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 81412, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [13, 1061]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '22', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82215, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [13, 873]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '15', 'building_ref': 'IMB/92048/S/008I', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 81920, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [67, 985]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '18', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82245, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [74, 966]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '16', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82259, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [155, 683]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '11', 'street_ext': 'B', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82875, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [170, 1272]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '2', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83373, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [149, 846]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '12', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82677, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [149, 846]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '17', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82868, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [149, 846]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '20', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82869, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [131, 1275]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '34', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82817, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [127, 830]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '13', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82608, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [104, 919]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237156', 'street_number': '14', 'street': 'RUE DE PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82798, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [120, 1790]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '14', 'building_ref': 'IMB/92040/C/9884', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 82598, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [167, 1305]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '1', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82698, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [176, 1336]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237285', 'street_number': '1', 'street': 'SENTIER DES PUCELLES', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82905, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [184, 2285]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '139', 'building_ref': 'ID-92040000005O', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87532, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [235, 1340]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237285', 'street_number': '3', 'street': 'SENTIER DES PUCELLES', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83026, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [267, 1098]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '7', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83217, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [269, 603]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '7', 'building_ref': 'IMB/92048/S/008N', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83222, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [248, 666]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '9', 'building_ref': 'IMB/92048/S/008O', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87678, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [248, 470]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '3', 'building_ref': 'IMB/92048/S/008K', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83035, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [250, 1128]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '6', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83209, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [226, 1193]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '4', 'street_ext': 'B', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83126, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [221, 1181]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '4', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87607, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [193, 1232]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '3', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82992, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [183, 758]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '11', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82978, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [205, 112]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480170', 'street_number': '25', 'building_ref': 'IMB/92048/S/01E0', 'street': 'AVENUE AUGUSTE RODIN', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83396, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [281, 851]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '38', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83154, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [312, 568]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '5', 'building_ref': 'IMB/92048/S/008M', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83184, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [307, 261]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '5', 'street_ext': 'T', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83249, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [320, 878]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '40', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87894, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [325, 1006]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '9', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83467, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [323, 993]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '10', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83915, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [341, 961]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '11', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83289, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [343, 1063]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '8', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83290, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [359, 927]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '12', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83304, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [355, 376]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470B', 'street_number': '5', 'building_ref': 'IMB/92048/S/00RH', 'street_ext': 'B', 'street': 'R DU LT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83938, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [355, 60]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480170', 'street_number': '29', 'building_ref': 'IMB/92048/S/01ET', 'street': 'AVENUE AUGUSTE RODIN', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83489, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [334, -1]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480170', 'street_number': '27', 'building_ref': 'IMB/92048/S/01EA', 'street': 'AVENUE AUGUSTE RODIN', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83468, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [376, 14]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480170', 'street_number': '31', 'building_ref': 'IMB/92048/S/01F9', 'street': 'AVENUE AUGUSTE RODIN', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83312, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [442, -56]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480170', 'street_number': '44', 'street': 'AVENUE AUGUSTE RODIN', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84134, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [441, 29]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480170', 'street_number': '33', 'building_ref': 'IMB/92048/C/01FE', 'street': 'AVENUE AUGUSTE RODIN', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83895, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [419, 193]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '7', 'building_ref': 'IMB/92048/X/02JE', 'street_ext': 'B', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84226, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [419, 438]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '3', 'building_ref': 'IMB/92048/S/00RE', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87973, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [419, 411]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '5', 'building_ref': 'IMB/92048/S/00RI', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84227, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [426, 553]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '2', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83416, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [426, 553]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920480885', 'street_number': '1', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84247, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [441, 268]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '7', 'building_ref': 'IMB/92048/C/ZLFZ', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83896, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [450, 453]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '3', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84141, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [450, 660]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '36', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84139, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [450, 660]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '42', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84140, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [434, 790]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '15', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88122, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [448, 1105]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '125', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88144, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [431, 1160]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '127', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83881, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [421, 1186]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '129', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88118, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [400, 1219]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '131', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83339, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [397, 1283]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '135', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87942, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [400, 854]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '14', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83711, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [398, 467]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470B', 'street_number': '1', 'building_ref': 'IMB/92048/S/00R8', 'street_ext': 'B', 'street': 'R DU LT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87947, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [398, 314]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '7', 'building_ref': 'IMB/92048/X/02Z4', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84111, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [398, 535]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920233177', 'street_number': '1', 'building_ref': 'IMB/92023/X/00UC', 'street': 'RUE D ESTIENNE D ORVES', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84112, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [379, 892]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234127', 'street_number': '13', 'street': 'ALLEE GAMBRINUS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87937, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [400, 2069]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '7', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83709, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [400, 2069]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '10', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83710, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [400, 2069]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '0', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87956, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [398, 1643]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '18', 'building_ref': 'IMB/92040/C/9886', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87948, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [397, 1330]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '137', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83696, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [399, 1358]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '139', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83708, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [428, 1453]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '136', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83417, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [312, 1836]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406176', 'street_number': '16', 'building_ref': 'IMB/92040/C/9885', 'street': 'CHEMIN DES MONTQUARTIERS', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83903, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [291, 2283]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '139', 'building_ref': 'IMB/92040/C/0405', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87805, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [633, 1552]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '133', 'building_ref': 'IMB/92040/S/8517', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88538, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [614, 1346]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '21', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88521, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [609, 1377]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '17', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84398, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [611, 1393]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '137', 'building_ref': 'IMB/92040/S/8509', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84911, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [590, 1511]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '135', 'building_ref': 'IMB/92040/S/8507', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84887, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [591, 1343]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '19', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84393, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [568, 1470]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '137', 'building_ref': 'IMB/92040/S/8498', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84816, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [547, 1460]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '139', 'building_ref': 'IMB/92040/S/8510', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84797, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [477, 1341]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '204', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83819, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [505, 1391]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '141', 'building_ref': 'IMB/92040/S/8512', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88292, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [526, 1426]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '139', 'building_ref': 'IMB/92040/S/8511', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84678, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [541, 1132]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '194', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88344, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [527, 1130]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '196', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88334, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [541, 803]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '13', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84786, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [512, 766]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '15', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88311, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [514, 1162]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '196', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84474, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [510, 1150]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '186', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83946, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [491, 1021]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '119', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88238, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [485, 1211]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '198', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84285, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [475, 1240]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '200', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84265, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [476, 1072]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '123', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84266, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [468, 1281]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '202', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88217, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [456, 1148]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '133', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83442, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [455, 496]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '1', 'street_ext': 'B', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84143, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [466, 398]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '5', 'street_ext': 'B', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84256, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [461, 428]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '5', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84358, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [462, 243]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '9', 'building_ref': 'IMB/92048/S/00RJ', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84148, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [470, 354]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '7', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84261, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [477, 287]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '9', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83818, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [484, 214]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '11', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84284, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [493, 743]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '17', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84449, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [494, 116]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '19', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83839, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [489, 162]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470A', 'street_number': '17', 'street': 'RUE LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83835, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [483, 77]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '19', 'building_ref': 'IMB/92048/C/00RA', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84279, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [462, 167]}, 'properties': {'insee_code': '92048', 'kosc_street_code': '920481470C', 'street_number': '17', 'building_ref': 'IMB/92048/S/00R9', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'MEUDON', 'zip_code': '92190', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84366, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [567, 1105]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '192', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84815, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [561, 1008]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '117', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84043, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [565, 805]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '11', 'street_ext': 'B', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84046, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [596, 990]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '115', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84900, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [638, 974]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '113', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85569, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [658, 823]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '11', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88665, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [697, 1048]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '188', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85763, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [801, 1026]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '182', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84859, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [814, 846]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '5', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88990, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [778, 1030]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '184', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86239, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [782, 1297]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '9', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85232, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [772, 839]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '7', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88905, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [732, 831]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '9', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88866, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [761, 1531]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '127', 'building_ref': 'IMB/92040/S/8504', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86217, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [771, 1412]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '7', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85132, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [782, 1582]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '127', 'building_ref': 'IMB/92040/C/8503', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88954, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [811, 1419]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '5', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86493, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [718, 1552]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '129', 'building_ref': 'IMB/92040/C/8505', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84645, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [675, 1428]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '133', 'building_ref': 'IMB/92040/X/00JN', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85008, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [654, 1552]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '131', 'building_ref': 'IMB/92040/S/008G', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85578, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [996, 1628]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '119', 'building_ref': 'IMB/92040/S/8468', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87038, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [991, 1395]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '14', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85617, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [974, 1436]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '16', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87014, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [970, 1349]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '13', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87011, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [957, 1385]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '15', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85592, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [953, 1539]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '123', 'building_ref': 'IMB/92040/X/00R9', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89219, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [932, 1623]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '121', 'building_ref': 'IMB/92040/S/8499', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85431, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [932, 1567]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '123', 'building_ref': 'IMB/92040/C/8501', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85916, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [932, 1470]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185B', 'street_number': '10', 'building_ref': 'IMB/92040/S/9011', 'street': 'SENTIER DES ETROITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85915, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [910, 1496]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '123', 'building_ref': 'IMB/92040/X/00RB', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85840, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [910, 1523]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '123', 'building_ref': 'IMB/92040/X/00RA', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86768, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3401, 3944]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '77', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98802, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3408, 3706]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '8', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97219, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3452, 3559]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '20', 'building_ref': 'IMB/92040/C/8559', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97306, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3474, 3934]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '75', 'building_ref': 'IMB/92040/X/00QM', 'street_ext': 'B', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99838, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 3723]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '10', 'building_ref': 'IMB/92040/C/9782', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99202, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 4007]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '75', 'building_ref': 'IMB/92040/X/013K', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94952, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 3580]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '18', 'building_ref': 'IMB/92040/S/8589', 'street_ext': 'T', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95065, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3538, 3743]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '12', 'building_ref': 'IMB/92040/C/9783', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95079, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3536, 3840]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '5', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100262, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3538, 3439]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '17', 'building_ref': 'IMB/92040/X/014J', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95078, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 3432]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '19', 'building_ref': 'IMB/92040/S/8587', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97371, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 3376]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '21', 'building_ref': 'IMB/92040/S/8561', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99997, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3448, 3411]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '23', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94856, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3431, 3386]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '25', 'building_ref': 'IMB/92040/S/8562', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94650, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3410, 3371]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '27', 'building_ref': 'IMB/92040/S/8563', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99251, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3389, 3340]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '29', 'building_ref': 'IMB/92040/C/8577', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98784, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3389, 3356]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '27', 'building_ref': 'IMB/92040/S/8564', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97113, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3346, 3335]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '31', 'building_ref': 'IMB/92040/S/8558', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99094, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3346, 3320]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '31', 'building_ref': 'IMB/92040/C/8569', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94514, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3324, 3305]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '31', 'building_ref': 'IMB/92040/C/8570', 'street_ext': 'T', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94492, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3282, 3469]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '24', 'building_ref': 'ID-920400000065', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94310, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3282, 3284]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '33', 'building_ref': 'IMB/92040/C/8572', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99054, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3239, 3254]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '35', 'building_ref': 'IMB/92040/C/8574', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97980, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3219, 3382]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '26', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98315, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3196, 3605]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '2', 'building_ref': 'IMB/92040/X/014H', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96340, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3217, 4111]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '2', 'building_ref': 'IMB/92040/C/9614', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97913, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3239, 4071]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '0', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97988, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3269, 3664]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '4', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94304, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3282, 3788]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '1', 'building_ref': 'IMB/92040/C/9777', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98363, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3337, 3677]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '6', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96849, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3367, 3525]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '22', 'building_ref': 'ID-920400000064', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94535, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3367, 3860]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '3', 'building_ref': 'IMB/92040/C/9778', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98585, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 4146]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '4', 'building_ref': 'IMB/92040/C/9616', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97214, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 3625]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400020', 'street_number': '24', 'building_ref': 'IMB/92040/X/00QU', 'street': 'CHEMIN D ACCES A LA GARE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93282, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 3533]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '5', 'building_ref': 'IMB/92040/S/9418', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97415, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3106, 3642]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '0', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97459, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3106, 3642]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '1', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97825, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3111, 3568]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '3', 'building_ref': 'IMB/92040/S/00B7', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97831, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 4083]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '2', 'building_ref': 'IMB/92040/C/9615', 'street_ext': 'B', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97880, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3173, 3850]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040B011', 'street_number': '21', 'street': 'LES ARCHES D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96310, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3179, 3245]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '37', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96324, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 3367]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '28', 'building_ref': 'ID-920400000040', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96291, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3132, 3330]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '30', 'building_ref': 'IMB/92040/C/8567', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93771, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 3300]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '32', 'building_ref': 'IMB/92040/C/8571', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97816, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 3452]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '9', 'building_ref': 'IMB/92040/S/9435', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95987, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 3493]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '7', 'building_ref': 'IMB/92040/C/9420', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95988, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 3279]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '34', 'building_ref': 'IMB/92040/C/8573', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95986, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 3361]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '13', 'building_ref': 'IMB/92040/S/9409', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93281, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 3407]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '11', 'building_ref': 'IMB/92040/C/9422', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97391, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3004, 3259]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '36', 'building_ref': 'IMB/92040/S/8575', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97174, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3004, 3300]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '15', 'building_ref': 'IMB/92040/S/9424', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97274, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2971, 3301]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '6', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95763, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2973, 3346]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '4', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97014, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2968, 3242]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '8', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96902, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2940, 3393]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920401420', 'street_number': '2', 'building_ref': 'IMB/92040/X/014O', 'street': 'ALLEE DES CARRIERES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95546, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2918, 3259]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '38', 'building_ref': 'IMB/92040/X/00S5', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92947, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2835, 3475]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040B011', 'street_number': '24', 'street': 'LES ARCHES D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96775, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2833, 4083]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '6', 'building_ref': 'IMB/92040/C/9619', 'street_ext': 'B', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95274, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2897, 4085]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '6', 'building_ref': 'IMB/92040/C/9618', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96523, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2925, 3562]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040B011', 'street_number': '23', 'street': 'LES ARCHES D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96928, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 3600]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400020', 'street_number': '22', 'building_ref': 'IMB/92040/X/00QT', 'street': 'CHEMIN D ACCES A LA GARE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95770, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3001, 3636]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040B011', 'street_number': '22', 'street': 'LES ARCHES D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95786, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 4118]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '4', 'building_ref': 'IMB/92040/C/9617', 'street_ext': 'B', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95771, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2684, 4093]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '8', 'building_ref': 'IMB/92040/C/9621', 'street_ext': 'B', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92277, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2656, 3871]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '40', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94298, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2691, 3729]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '118', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92292, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2726, 3595]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '85', 'building_ref': 'IMB/92040/C/0637', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92332, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2766, 3856]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '42', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95028, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2766, 3856]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '55', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95029, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2766, 3856]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '0', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95943, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2766, 3856]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '61', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95944, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2748, 4087]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405150', 'street_number': '8', 'building_ref': 'IMB/92040/C/9620', 'street': 'PLACE LEON BLUM', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94689, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2803, 3781]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '116', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96648, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '8', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92502, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '38', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '72', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92504, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '82', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92505, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '98', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92506, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '154', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92507, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '220', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92508, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '0', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95261, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '43', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95262, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '9', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96181, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '32', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96182, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '47', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96183, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '48', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96184, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '92', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96185, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '145', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96186, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '218', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96187, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '66', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96670, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '101', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96671, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2813, 3676]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '104', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96672, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2812, 3639]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '83', 'building_ref': 'IMB/92040/C/0638', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95252, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2598, 3335]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400020', 'street_number': '22', 'building_ref': 'IMB/92040/S/00B6', 'street': 'CHEMIN D ACCES A LA GARE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94055, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2512, 3492]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '89', 'building_ref': 'IMB/92040/C/0633', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93434, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2493, 3638]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '120', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91904, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2491, 4047]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '73', 'building_ref': 'IMB/92040/X/00YL', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93417, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2491, 4102]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '75', 'building_ref': 'IMB/92040/X/010E', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95417, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2534, 3839]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '36', 'building_ref': 'ID-92040000001I', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93854, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2595, 3685]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '120', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94048, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2619, 3539]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '87', 'building_ref': 'IMB/92040/C/0636', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96042, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2619, 3830]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '38', 'building_ref': 'ID-92040000002G', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95443, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2299, 3853]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '32', 'building_ref': 'IMB/92040/C/9116', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92521, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2363, 4079]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '71', 'building_ref': 'IMB/92040/X/00YM', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92802, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2363, 3686]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '122', 'building_ref': 'IMB/92040/C/0406', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94796, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2376, 3899]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '34', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94758, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2418, 3493]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '81', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91638, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2406, 3348]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '91', 'building_ref': 'IMB/92040/C/0632', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93069, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2301, 3438]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '93', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94028, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 3370]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '97', 'building_ref': 'IMB/92040/C/0328', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91100, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2149, 3314]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '99', 'building_ref': 'IMB/92040/C/0394', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93544, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2107, 3899]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '28', 'building_ref': 'IMB/92040/S/9118', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93911, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2128, 4082]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '65', 'building_ref': 'IMB/92040/X/013D', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90465, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2149, 3574]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '126', 'building_ref': 'IMB/92040/C/0416', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90488, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2213, 4078]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '67', 'building_ref': 'IMB/92040/X/013E', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93662, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2213, 3797]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '124', 'building_ref': 'IMB/92040/X/0153', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92068, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2213, 3797]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '32', 'building_ref': 'IMB/92040/X/0154', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93661, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2213, 3797]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '122', 'building_ref': 'IMB/92040/X/0152', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94165, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2213, 3869]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '30', 'building_ref': 'IMB/92040/C/002R', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90687, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 3455]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '7', 'building_ref': 'IMB/92040/S/8585', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99486, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 3460]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '5', 'building_ref': 'IMB/92040/S/8581', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99559, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3688, 3509]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '3', 'building_ref': 'IMB/92040/S/8597', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101242, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3752, 3646]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '12', 'building_ref': 'IMB/92040/S/8592', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101314, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3757, 3548]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '3', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98514, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 3656]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '10', 'building_ref': 'IMB/92040/C/8590', 'street_ext': 'T', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101372, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 3845]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '16', 'building_ref': 'IMB/92040/S/9735', 'street_ext': 'B', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96095, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 3844]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '16', 'building_ref': 'IMB/92040/S/9772', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99709, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3765, 4092]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '69', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101367, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3821, 3639]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '10', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99772, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 3865]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '18', 'building_ref': 'IMB/92040/C/9736', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96687, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3859, 4130]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '67', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100138, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3858, 3677]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '10', 'building_ref': 'IMB/92040/S/8588', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98705, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 3682]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '8', 'building_ref': 'IMB/92040/C/8586', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100150, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 3885]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '20', 'building_ref': 'IMB/92040/X/00M1', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100173, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3911, 4151]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '65', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101959, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3711, 4070]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '71', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98382, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3705, 3915]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '7', 'street_ext': 'B', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101256, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 3806]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '14', 'building_ref': 'IMB/92040/S/9745', 'street_ext': 'T', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99645, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3707, 3614]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '14', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98233, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3684, 4151]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '92', 'street_ext': 'T', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101239, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3684, 3607]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '14', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98210, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3679, 3523]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '3', 'street_ext': 'T', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98209, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 3798]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '14', 'building_ref': 'IMB/92040/C/9747', 'street_ext': 'B', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95625, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 4023]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '73', 'building_ref': 'IMB/92040/X/0146', 'street_ext': 'B', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100915, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 3626]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '16', 'building_ref': 'IMB/92040/S/8595', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99487, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 3742]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '14', 'building_ref': 'IMB/92040/S/9785', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95595, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 4033]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '73', 'building_ref': 'IMB/92040/S/0717', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95596, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3623, 3736]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '12', 'building_ref': 'IMB/92040/S/9784', 'street_ext': 'B', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99469, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3610, 3873]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '7', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97757, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3602, 4044]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409652', 'street_number': '73', 'building_ref': 'IMB/92040/X/014W', 'street': 'AVENUE VICTOR CRESSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100421, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3581, 3610]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '18', 'building_ref': 'IMB/92040/S/8596', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95172, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3559, 3595]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '18', 'building_ref': 'IMB/92040/S/8568', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99312, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 3890]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407178B', 'street_number': '5', 'building_ref': 'IMB/92040/C/8322', 'street': 'PLACE DU PRESIDENT KENNEDY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100685, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4135, 3959]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407178B', 'street_number': '7', 'street': 'PLACE DU PRESIDENT KENNEDY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100606, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4110, 4072]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '21', 'street_ext': 'B', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100584, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 3682]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '6', 'building_ref': 'IMB/92040/C/8584', 'street_ext': 'T', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97044, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3965, 3692]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '6', 'building_ref': 'IMB/92040/C/8583', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102142, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3965, 3875]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '22', 'building_ref': 'IMB/92040/S/9739', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98846, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3960, 4060]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '17', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 102137, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4003, 4049]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '19', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100454, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 3779]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '4', 'building_ref': 'IMB/92040/S/8580', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100461, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 3702]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '6', 'building_ref': 'IMB/92040/C/8582', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97538, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 3881]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '22', 'building_ref': 'IMB/92040/S/9740', 'street_ext': 'B', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97539, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4062, 4058]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '21', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99406, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 3942]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '24', 'building_ref': 'IMB/92040/C/9741', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102451, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 3723]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '4', 'building_ref': 'IMB/92040/S/8548', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99348, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 3938]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407115', 'street_number': '26', 'building_ref': 'IMB/92040/C/9742', 'street': 'AVENUE PASTEUR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97940, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 3728]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '2', 'building_ref': 'IMB/92040/C/8536', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102541, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 3503]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '1', 'building_ref': 'IMB/92040/X/00PP', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100194, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3645, 3275]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '41', 'building_ref': 'IMB/92040/S/9349', 'street_ext': 'T', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100886, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 2998]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '40', 'building_ref': 'IMB/92040/C/9346', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99558, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 3106]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '43', 'building_ref': 'IMB/92040/C/9350', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98192, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 3203]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '43', 'building_ref': 'IMB/92040/X/00KD', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100914, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 3284]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '43', 'building_ref': 'IMB/92040/X/00KF', 'street_ext': 'A', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95624, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3666, 2706]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '28', 'building_ref': 'IMB/92040/X/00II', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100913, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3694, 2655]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '23', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101250, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 2827]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '19', 'building_ref': 'IMB/92040/S/8956', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101259, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 2937]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '16', 'building_ref': 'IMB/92040/X/00IJ', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101260, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3688, 2924]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '16', 'building_ref': 'IMB/92040/S/8953', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99578, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3688, 2995]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '40', 'building_ref': 'IMB/92040/C/9347', 'street_ext': 'T', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99579, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 3122]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '45', 'building_ref': 'IMB/92040/C/9352', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98237, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3730, 3006]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '42', 'building_ref': 'IMB/92040/X/00KC', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99667, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 2251]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '32', 'building_ref': 'IMB/92040/S/8799', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99644, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3700, 1934]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '52', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99637, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3828, 2017]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '48', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101464, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 2160]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '41', 'building_ref': 'IMB/92040/S/8808', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99783, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 1916]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '35', 'building_ref': 'IMB/92040/C/0664', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96686, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3860, 2032]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '46', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100139, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3892, 1995]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '31', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98743, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 2254]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '37', 'building_ref': 'IMB/92040/X/00OM', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100172, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 2099]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '44', 'building_ref': 'IMB/92040/S/0660', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100149, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 1942]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '33', 'building_ref': 'IMB/92040/S/0678', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101698, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 2198]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '39', 'building_ref': 'IMB/92040/C/8805', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98727, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 2467]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '24', 'building_ref': 'ID-92040000002S', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96963, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 2801]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '20', 'building_ref': 'IMB/92040/S/8660', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96964, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3876, 2707]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '15', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101693, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 2537]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '20', 'building_ref': 'IMB/92040/S/8791', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101941, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3914, 2459]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '22', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98770, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 2903]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '15', 'building_ref': 'IMB/92040/S/8952', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101942, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 3000]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '8', 'building_ref': 'IMB/92040/S/8676', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101699, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3862, 3055]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '48', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96727, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3858, 2654]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '17', 'building_ref': 'IMB/92040/S/8658', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98704, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3823, 2888]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '15', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101461, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 2975]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '10', 'building_ref': 'IMB/92040/S/8843', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99784, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 3143]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '53', 'building_ref': 'IMB/92040/C/9305', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99785, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3815, 3020]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '46', 'building_ref': 'IMB/92040/S/9353', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99751, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3794, 2964]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '12', 'building_ref': 'IMB/92040/S/8627', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99721, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3794, 3137]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '51', 'building_ref': 'IMB/92040/C/9303', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98547, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3812, 2730]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '24', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99745, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3801, 1954]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '35', 'street_ext': 'B', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101397, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3815, 2104]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '43', 'building_ref': 'IMB/92040/S/8810', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101404, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3782, 1970]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '50', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 101379, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3794, 2064]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '45', 'building_ref': 'IMB/92040/X/00RG', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98545, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3794, 2403]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '26', 'building_ref': 'ID-92040000004B', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98546, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3781, 2305]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '28', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96243, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3752, 2041]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '47', 'building_ref': 'IMB/92040/X/00QV', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101311, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3742, 2259]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '30', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99680, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3740, 2673]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '21', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96064, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3736, 2681]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '26', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98405, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3752, 2959]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '14', 'building_ref': 'IMB/92040/S/8951', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101312, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 2603]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '19', 'building_ref': 'IMB/92040/S/8659', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96094, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 2811]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '17', 'building_ref': 'IMB/92040/S/8954', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99708, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 3005]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '44', 'building_ref': 'IMB/92040/S/9351', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98524, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 3132]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '49', 'building_ref': 'IMB/92040/C/9313', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98525, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3752, 3112]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '47', 'building_ref': 'IMB/92040/C/9315', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101313, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 3066]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '2', 'building_ref': 'IMB/92040/S/8672', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97721, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 2913]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '9', 'building_ref': 'IMB/92040/S/8677', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99347, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 2415]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '27', 'building_ref': 'IMB/92040/C/8797', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100505, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4078, 2649]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '12', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100554, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 2944]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '7', 'building_ref': 'IMB/92040/S/8675', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102540, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 2451]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '25', 'building_ref': 'IMB/92040/C/8795', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100562, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4072, 2190]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '34', 'building_ref': 'IMB/92040/X/00KS', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100537, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 2181]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '36', 'building_ref': 'IMB/92040/S/0683', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99346, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4029, 1977]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '2', 'building_ref': 'IMB/92040/C/8778', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99317, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4012, 2105]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '38', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97550, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 2334]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '31', 'building_ref': 'IMB/92040/S/8798', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102364, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 2662]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '14', 'building_ref': 'IMB/92040/X/00IH', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102365, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4044, 2799]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '0', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97714, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4029, 2827]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '14', 'building_ref': 'IMB/92040/S/8657', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102433, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4038, 3091]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '54', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100494, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4015, 3021]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '4', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97552, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 3041]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '52', 'building_ref': 'IMB/92040/S/9304', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98983, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4004, 2415]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '29', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100456, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3991, 2786]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '16', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98971, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3978, 2947]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '11', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97154, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3965, 2603]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '16', 'building_ref': 'IMB/92040/C/00BT', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100235, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3965, 3036]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '50', 'building_ref': 'IMB/92040/S/9340', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102141, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3956, 2998]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '6', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100225, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 2680]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '13', 'building_ref': 'IMB/92040/S/8656', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100193, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3944, 2567]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '18', 'building_ref': 'IMB/92040/S/8789', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100216, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3944, 2878]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '13', 'building_ref': 'IMB/92040/S/8802', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102120, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3944, 2776]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '18', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 102119, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3944, 2288]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '35', 'building_ref': 'IMB/92040/C/8788', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100215, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 2104]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '42', 'building_ref': 'IMB/92040/S/0661', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97043, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3971, 2084]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '40', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 102157, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3987, 2318]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '33', 'building_ref': 'IMB/92040/S/8814', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98869, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 2090]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '1', 'building_ref': 'IMB/92040/S/8777', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100654, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 2240]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '30', 'building_ref': 'IMB/92040/X/00YA', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100655, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4130, 2167]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '32', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99517, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4100, 2674]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '10', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99448, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 2950]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '5', 'building_ref': 'IMB/92040/S/8674', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100657, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 2481]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '23', 'building_ref': 'IMB/92040/S/8793', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100656, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4158, 2742]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '8', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100741, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 2980]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '3', 'building_ref': 'IMB/92040/S/8673', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98103, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 2039]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '3', 'building_ref': 'IMB/92040/S/8779', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100684, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 2005]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '5', 'building_ref': 'IMB/92040/C/8781', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99587, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3389, -49]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '7', 'building_ref': 'IMB/92040/S/0325', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99232, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3367, 7]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '5', 'building_ref': 'IMB/92040/S/0323', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98583, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3324, 78]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '3', 'building_ref': 'IMB/92040/S/0322', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99080, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3282, -49]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '6', 'building_ref': 'IMB/92040/S/0324', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94308, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 153]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '1', 'building_ref': 'IMB/92040/S/0320', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94205, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3246, 196]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '2', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98338, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3196, 323]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '29', 'building_ref': 'IMB/92040/X/00KX', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98064, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3196, 409]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '25', 'building_ref': 'IMB/92040/S/9595', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94103, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3206, 373]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '27', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94116, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 427]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '23', 'building_ref': 'IMB/92040/S/9593', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97878, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3175, 295]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '31', 'building_ref': 'IMB/92040/X/00KZ', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94082, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3132, 190]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404725', 'street_number': '2', 'building_ref': 'IMB/92040/C/0321', 'street_ext': 'B', 'street': 'PASSAGE JEAN GEORGET', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97849, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3132, 266]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '33', 'building_ref': 'IMB/92040/S/9572', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93769, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3066, 299]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '20', 'street_ext': 'B', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97695, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3068, 241]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '35', 'building_ref': 'IMB/92040/C/9612', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97433, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3080, 431]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '16', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97804, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 556]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '19', 'building_ref': 'IMB/92040/C/9590', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97446, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 476]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '21', 'building_ref': 'IMB/92040/S/9591', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97815, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 363]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '18', 'building_ref': 'IMB/92040/S/9589', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93599, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3004, 308]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '20', 'building_ref': 'IMB/92040/X/00KV', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97173, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 389]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '1', 'building_ref': 'IMB/92040/S/9658', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97213, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2961, 694]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '13', 'building_ref': 'IMB/92040/S/9584', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96998, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2961, 617]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '15', 'building_ref': 'IMB/92040/S/9586', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95753, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2961, 287]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '22', 'building_ref': 'IMB/92040/S/9592', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95752, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 358]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '3', 'building_ref': 'IMB/92040/S/9659', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95768, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2982, 466]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '2', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92987, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 602]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '17', 'building_ref': 'IMB/92040/S/9587', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95769, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2993, 538]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '17', 'street_ext': 'B', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97036, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 190]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '37', 'building_ref': 'IMB/92040/S/0065', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92991, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2961, 170]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '37', 'building_ref': 'IMB/92040/S/9653', 'street_ext': 'B', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96997, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2940, 154]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '39', 'building_ref': 'IMB/92040/S/9654', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92965, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2936, 30]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '24', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96871, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2926, -17]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '22', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92961, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2940, 500]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '14', 'building_ref': 'IMB/92040/S/9571', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95545, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2876, 493]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '4', 'building_ref': 'IMB/92040/S/9578', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95306, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2876, 573]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '10', 'building_ref': 'IMB/92040/X/00KW', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96804, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2897, 266]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '24', 'building_ref': 'IMB/92040/S/9594', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92928, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2898, 390]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '5', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92935, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2897, 465]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '4', 'building_ref': 'IMB/92040/S/9660', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96521, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2897, 730]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '9', 'building_ref': 'IMB/92040/S/9582', 'street_ext': 'B', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96815, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2897, 689]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '11', 'building_ref': 'IMB/92040/S/9597', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96522, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2897, 526]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '12', 'building_ref': 'IMB/92040/X/0150', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92929, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2906, -57]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '13', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96915, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2900, -36]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '17', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92937, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2876, 160]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '39', 'building_ref': 'IMB/92040/S/9655', 'street_ext': 'B', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96452, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2868, 191]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '41', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95304, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2848, 198]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '28', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96436, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2850, -1]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '19', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96782, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2825, 557]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '9', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96420, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2833, 586]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '7', 'building_ref': 'IMB/92040/X/014Y', 'street_ext': 'B', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92654, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2833, 311]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '7', 'building_ref': 'IMB/92040/X/00KY', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96424, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2854, 439]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '6', 'building_ref': 'IMB/92040/S/9661', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95288, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2854, 249]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '26', 'building_ref': 'IMB/92040/S/9626', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92672, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2854, 755]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '9', 'building_ref': 'IMB/92040/S/9581', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96785, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2833, 758]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '7', 'building_ref': 'IMB/92040/C/9580', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96679, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2790, 816]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '5', 'building_ref': 'IMB/92040/S/9579', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95054, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2790, 643]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '7', 'building_ref': 'IMB/92040/C/0551', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92481, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2779, 570]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '12', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92476, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2790, 393]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '10', 'building_ref': 'IMB/92040/S/9663', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96150, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2812, 408]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '8', 'building_ref': 'IMB/92040/S/9662', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95251, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2776, 150]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '1', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95041, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2776, 150]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '7', 'street_ext': 'B', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95042, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2776, 150]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '26', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96629, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2771, 108]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '3', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92469, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2737, 83]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '5', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95911, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2774, 322]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406116', 'street_number': '12', 'street': 'RUE MADEMOISELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95959, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2769, 500]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '14', 'building_ref': 'IMB/92040/S/0786', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92465, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2744, 1068]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '59', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92446, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2748, 841]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '3', 'building_ref': 'IMB/92040/S/9577', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95918, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2711, 1028]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '61', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94661, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2705, 566]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '10', 'building_ref': 'IMB/92040/S/0745', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92306, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2701, 308]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '25', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95734, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2705, 378]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '32', 'building_ref': 'IMB/92023/S/0374', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95737, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2726, 694]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '5', 'building_ref': 'IMB/92040/C/0553', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96561, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2723, 142]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '2', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95885, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2658, 95]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '7', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92249, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2659, 137]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '4', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92251, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2640, 213]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '11', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96199, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2650, 436]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '36', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94296, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2641, 642]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '6', 'building_ref': 'IMB/92040/S/0748', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96200, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2661, 364]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '27', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96218, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2670, 407]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '34', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95714, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2680, 240]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '9', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94409, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2684, 602]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '8', 'building_ref': 'IMB/92040/S/0747', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96378, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2674, 856]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '1', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94403, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2678, 988]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '63', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92272, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2662, 953]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '65', 'building_ref': 'IMB/92040/S/8768', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92253, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2662, 770]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '3', 'building_ref': 'IMB/92040/S/0555', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94393, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2641, 928]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '67', 'building_ref': 'IMB/92040/C/8770', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96201, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2637, 871]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406105', 'street_number': '2', 'street': 'RUE MADAME', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94281, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2619, 852]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '69', 'building_ref': 'IMB/92040/S/8771', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95442, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2598, 836]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '71', 'building_ref': 'IMB/92040/S/8772', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92136, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2598, 698]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '4', 'building_ref': 'IMB/92040/S/0749', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94054, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2596, 459]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '31', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94053, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2619, 425]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '29', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95440, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2619, 485]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '38', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92205, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2632, 234]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '6', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96190, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2623, -12]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '32', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92223, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2623, -12]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '5', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94273, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2623, -12]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '14', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96056, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2579, 193]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '10', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94042, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2558, 573]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '42', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95861, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2556, 515]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '35', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93891, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2590, 226]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236261', 'street_number': '8', 'street': 'VILLA DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96016, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2584, 535]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '40', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92130, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2579, 483]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '33', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95871, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2593, 765]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '2', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96017, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2592, 788]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409140', 'street_number': '1', 'street': 'VILLA DU TIR', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95366, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2537, 977]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '72', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95840, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2534, 775]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '75', 'building_ref': 'IMB/92040/S/8761', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92075, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2533, 813]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '73', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95511, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2530, 970]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '74', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91932, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2510, 643]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '46', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91911, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2514, 578]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '39', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91921, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2522, 201]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '34', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95205, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2528, 615]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '44', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95501, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2532, 552]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '37', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95218, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2541, -36]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '16', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95844, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2528, 12]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '13', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91928, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2501, 597]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '41', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93430, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2500, 659]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '48', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91907, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2484, 683]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '50', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95137, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2484, 1026]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '70', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91796, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2487, 919]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '76', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95411, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2440, 158]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '30', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94923, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2420, -48]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '6', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93082, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2387, 141]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '28', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93058, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2385, 602]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '9', 'building_ref': 'IMB/92023/X/027W', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94822, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2385, 579]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '4', 'building_ref': 'IMB/92023/X/027U', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91548, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2385, 590]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '6', 'building_ref': 'IMB/92023/X/027V', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94821, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2385, 564]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '2', 'building_ref': 'IMB/92023/X/027T', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92818, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2385, 564]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '11', 'building_ref': 'IMB/92023/X/027X', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92819, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2385, 549]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '13', 'building_ref': 'IMB/92023/X/027Y', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94763, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2392, 337]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920231484', 'street_number': '0', 'street': 'ALLEE CHARLES LOUIS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94785, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2392, 337]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920231484', 'street_number': '5', 'street': 'ALLEE CHARLES LOUIS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94883, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2408, 688]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '12', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94893, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2333, 734]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '78', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94708, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2363, 560]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '8', 'building_ref': 'IMB/92023/X/01Q3', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91436, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2315, 76]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '26', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94460, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2299, -53]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237159', 'street_number': '11', 'street': 'VILLA PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92530, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2298, 129]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '36', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92519, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2285, 10]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237159', 'street_number': '9', 'street': 'VILLA PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94386, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2320, 489]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920231484', 'street_number': '3', 'street': 'ALLEE CHARLES LOUIS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91338, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2297, 1044]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '9', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91314, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2248, 633]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '9', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93712, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 522]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '1', 'building_ref': 'IMB/92023/X/023R', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90981, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 495]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '10', 'building_ref': 'IMB/92023/X/026B', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92177, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 503]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '14', 'building_ref': 'IMB/92023/X/023X', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90980, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 482]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '6', 'building_ref': 'IMB/92023/X/023Y', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90979, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 489]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '4', 'building_ref': 'IMB/92023/X/026A', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93693, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 489]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '6', 'building_ref': 'IMB/92023/X/01VA', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94230, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2245, 353]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '15', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93709, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2245, 353]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '38', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93710, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 472]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '7', 'building_ref': 'IMB/92023/X/023U', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92383, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 472]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '5', 'building_ref': 'IMB/92023/X/023T', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93714, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 463]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '43', 'building_ref': 'IMB/92023/X/023W', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92203, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 482]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230080', 'street_number': '41', 'building_ref': 'IMB/92023/X/023V', 'street_ext': 'B', 'street': 'RUE D ARMENIE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93715, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 513]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '92023T005', 'street_number': '3', 'building_ref': 'IMB/92023/X/023S', 'street': 'ALLEE DES ABRICOTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93716, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2270, 75]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237159', 'street_number': '7', 'street': 'VILLA PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94359, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2204, 175]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237159', 'street_number': '5', 'street': 'VILLA PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90683, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2200, 614]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '7', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93653, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2220, 548]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '4', 'street_ext': 'B', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92169, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2221, 816]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920405175', 'street_number': '66', 'street_ext': 'E', 'street': 'SENTIER DES LOGES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90970, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2226, 1020]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '7', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94224, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2162, 598]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '5', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93567, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2150, 249]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237159', 'street_number': '3', 'street': 'VILLA PERCY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90501, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2156, 368]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920237209', 'street_number': '2', 'street': 'SENTIER DES PLAINS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90505, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2168, 18]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '128', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91974, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2111, 4]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '128', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93918, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2105, 63]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '130', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91671, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2097, 122]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '132', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92888, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2124, 514]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '2', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93106, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2122, 583]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236260', 'street_number': '3', 'street': 'RUE DES MONTS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90277, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, -3]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '40', 'building_ref': 'IMB/92040/C/8984', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97041, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4072, 48]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '36', 'building_ref': 'IMB/92040/S/8983', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102520, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4071, 9]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '38', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 102472, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4115, 74]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '34', 'building_ref': 'IMB/92040/S/8982', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97967, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 94]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '32', 'building_ref': 'IMB/92040/S/8981', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98080, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 125]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '30', 'building_ref': 'IMB/92040/S/8980', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98081, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 145]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403510', 'street_number': '28', 'building_ref': 'IMB/92040/S/8979', 'street': 'RUE FERDINAND BUISSON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99539, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3538, 2732]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '25', 'building_ref': 'ID-92040000002M', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100270, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3538, 2873]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '24', 'building_ref': 'IMB/92040/S/8960', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95077, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 2526]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '31', 'building_ref': 'IMB/92040/S/8662', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97370, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 2989]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '36', 'building_ref': 'IMB/92040/C/9339', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100026, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 3101]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '35', 'building_ref': 'IMB/92040/S/9337', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99226, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 3178]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '35', 'building_ref': 'IMB/92040/S/9338', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99227, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 2994]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '34', 'building_ref': 'IMB/92040/C/9336', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97345, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3474, 3101]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '33', 'building_ref': 'IMB/92040/S/9335', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97328, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3474, 2531]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '33', 'building_ref': 'IMB/92040/S/8663', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99837, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 2857]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '26', 'building_ref': 'IMB/92040/S/8976', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99996, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 2287]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '40', 'building_ref': 'IMB/92040/S/8807', 'street_ext': 'B', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97344, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3495, 2083]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '48', 'building_ref': 'IMB/92040/C/00CC', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94951, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3474, 2067]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '50', 'building_ref': 'IMB/92040/X/013T', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94930, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3516, 2236]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '40', 'building_ref': 'IMB/92040/S/8806', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99225, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3537, 1936]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '53', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99281, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3538, 2129]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '44', 'building_ref': 'IMB/92040/C/8811', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97485, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3538, 1773]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '4', 'building_ref': 'IMB/92040/S/9168', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100269, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3389, 1955]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '54', 'building_ref': 'IMB/92040/S/8813', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94554, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3452, 1656]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '55', 'building_ref': 'IMB/92040/C/8775', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97305, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3452, 2033]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '52', 'building_ref': 'IMB/92040/C/8812', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94860, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3431, 2501]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '35', 'building_ref': 'IMB/92040/S/8664', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99270, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3455, 2747]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '27', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99829, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3452, 2842]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '28', 'building_ref': 'IMB/92040/S/8963', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99031, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3452, 3101]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '31', 'building_ref': 'IMB/92040/S/9333', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99032, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3452, 2994]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '32', 'building_ref': 'IMB/92040/C/9334', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99821, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3410, 3101]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '29', 'building_ref': 'IMB/92040/S/9331', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94627, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3410, 2694]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '29', 'building_ref': 'IMB/92040/S/8950', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99249, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3410, 2817]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '30', 'building_ref': 'IMB/92040/S/8965', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99250, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3410, 2485]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '37', 'building_ref': 'IMB/92040/S/000Y', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99248, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3386, 2539]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '38', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97107, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3389, 2994]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '30', 'building_ref': 'IMB/92040/C/9332', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98783, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3346, 3091]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '27', 'building_ref': 'IMB/92040/S/9329', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96852, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3346, 2989]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '28', 'building_ref': 'IMB/92040/S/9330', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98560, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3367, 3091]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '27', 'building_ref': 'IMB/92040/S/00BM', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94534, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3367, 2470]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '39', 'building_ref': 'IMB/92040/C/8679', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98584, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3367, 2450]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '41', 'building_ref': 'IMB/92040/S/8666', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99164, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3329, 2519]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '40', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3324, 2653]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '31', 'building_ref': 'IMB/92040/S/8966', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98491, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3319, 3014]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '26', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94490, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3282, 3212]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '35', 'building_ref': 'IMB/92040/X/00RZ', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94309, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3287, 3015]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '24', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96760, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3298, 2747]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '34', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96766, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3286, 2489]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '43', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94321, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3303, 2821]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '32', 'building_ref': 'IMB/92040/C/8967', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94334, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3303, 2027]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '59', 'building_ref': 'IMB/92040/S/8939', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94333, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3282, 2114]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '55', 'building_ref': 'IMB/92040/S/8936', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99053, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3196, 2257]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '47', 'building_ref': 'IMB/92040/S/8929', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96339, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3217, 2394]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '47', 'building_ref': 'IMB/92040/S/8669', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96367, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3217, 2226]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '49', 'building_ref': 'IMB/92040/S/8931', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98303, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3239, 1569]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '57', 'building_ref': 'IMB/92040/S/8764', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97979, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 2088]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '57', 'building_ref': 'IMB/92040/S/8938', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96501, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 2378]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '45', 'building_ref': 'IMB/92040/S/8926', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94206, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 2165]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '53', 'building_ref': 'IMB/92040/S/8934', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98001, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3239, 2185]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '51', 'building_ref': 'IMB/92040/C/8933', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94186, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3239, 2434]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '45', 'building_ref': 'IMB/92040/S/000Z', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96481, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 2638]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '33', 'building_ref': 'IMB/92040/S/8968', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96502, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 2933]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '22', 'building_ref': 'IMB/92040/C/9302', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94207, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3260, 3198]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '35', 'building_ref': 'IMB/92040/X/00S0', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98002, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3267, 3077]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '25', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98357, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3217, 2603]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '42', 'building_ref': 'IMB/92040/S/8653', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98304, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3217, 2469]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '34', 'building_ref': 'ID-92040000003O', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96368, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3216, 2477]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '44', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96362, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3198, 2650]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '35', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94112, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3165, 3074]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '21', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93805, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3175, 3095]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '23', 'building_ref': 'IMB/92040/S/9248', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96316, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3175, 2506]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '46', 'building_ref': 'IMB/92040/S/8668', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96315, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 2900]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '20', 'building_ref': 'IMB/92040/X/00QK', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97588, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 2828]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '20', 'building_ref': 'IMB/92040/X/00QJ', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93793, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 2745]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '36', 'building_ref': 'IMB/92040/S/8969', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93792, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3153, 2618]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '37', 'building_ref': 'IMB/92040/C/8970', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97879, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3132, 2969]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '20', 'building_ref': 'IMB/92040/C/9271', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97476, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3131, 3069]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '19', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97847, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3130, 3215]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '39', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97475, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3111, 2878]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '20', 'building_ref': 'IMB/92040/X/00QI', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97830, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3111, 2917]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '20', 'building_ref': 'IMB/92040/C/9270', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96118, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3111, 2480]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403160', 'street_number': '48', 'building_ref': 'IMB/92040/S/8670', 'street': 'SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97462, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3111, 2536]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '39', 'building_ref': 'IMB/92040/S/8973', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97829, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3132, 2592]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '37', 'building_ref': 'IMB/92040/C/8971', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93770, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3111, 2399]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '43', 'building_ref': 'IMB/92040/C/8935', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97461, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3104, 1827]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '56', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93616, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3175, 2287]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '47', 'building_ref': 'IMB/92040/S/8928', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96313, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3175, 2327]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '45', 'building_ref': 'IMB/92040/S/8925', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96314, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3004, 1826]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '56', 'building_ref': 'IMB/92040/C/8923', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95790, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 1902]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '54', 'building_ref': 'IMB/92040/C/8949', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95821, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 2022]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '50', 'building_ref': 'IMB/92040/C/8932', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93600, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3068, 2096]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '58', 'building_ref': 'IMB/92040/C/8765', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96002, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3068, 2495]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '41', 'building_ref': 'IMB/92040/S/8975', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97434, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3084, 2716]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040Y0002', 'street_number': '2', 'street_ext': 'B', 'street': 'PETIT SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97444, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 2729]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040Y0002', 'street_number': '2', 'building_ref': 'IMB/92040/S/8692', 'street': 'PETIT SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97447, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 2959]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '16', 'building_ref': 'IMB/92040/S/00CY', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93601, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 3062]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '19', 'building_ref': 'IMB/92040/S/9269', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97448, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3089, 3103]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '17', 'building_ref': 'IMB/92040/C/9268', 'street_ext': 'B', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93602, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3088, 3189]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '41', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97812, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3068, 3157]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '53', 'building_ref': 'IMB/92040/S/8461', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97698, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 3040]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '15', 'building_ref': 'IMB/92040/S/9265', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97683, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 3078]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '17', 'building_ref': 'IMB/92040/S/9267', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93297, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 2928]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '16', 'building_ref': 'IMB/92040/C/9266', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97414, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3047, 2713]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040Y0002', 'street_number': '4', 'building_ref': 'IMB/92040/S/8655', 'street': 'PETIT SENTIER DES EPINETTES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95985, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3004, 2898]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '14', 'building_ref': 'IMB/92040/C/9264', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93242, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3004, 3121]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '55', 'building_ref': 'IMB/92040/S/8464', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93243, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 3024]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '13', 'building_ref': 'IMB/92040/S/9263', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97390, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3025, 3136]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '53', 'building_ref': 'IMB/92040/S/8462', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93280, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 3075]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '55', 'building_ref': 'IMB/92040/S/8465', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96906, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 3024]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '11', 'building_ref': 'IMB/92040/S/9247', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97018, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2983, 2867]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '12', 'building_ref': 'IMB/92040/C/9262', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92992, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2943, 3181]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '38', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95740, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2941, 3092]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '57', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95557, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2940, 2975]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402525', 'street_number': '7', 'building_ref': 'IMB/92040/X/00L0', 'street': 'RUE DE LA DEFENSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96935, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2931, 3174]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '38', 'street_ext': 'T', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96930, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2918, 2136]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '48', 'building_ref': 'IMB/92040/C/8930', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96917, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2998, 1994]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '52', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93236, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2996, 1606]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '60', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 97038, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2876, 1584]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '62', 'building_ref': 'IMB/92040/C/8766', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96805, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2892, 2460]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '40', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 96517, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2911, 3067]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '59', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95521, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2876, 3004]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '61', 'building_ref': 'IMB/92040/C/8477', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96806, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2833, 2495]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '40', 'building_ref': 'IMB/92040/S/0011', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96425, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2833, 3171]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '40', 'building_ref': 'IMB/92040/X/0122', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96426, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2812, 3133]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '42', 'building_ref': 'IMB/92040/X/00YY', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96658, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2812, 2958]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '63', 'building_ref': 'IMB/92040/C/8467', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92496, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2790, 2933]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '63', 'building_ref': 'IMB/92040/S/8458', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96151, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2790, 2472]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '44', 'building_ref': 'IMB/92040/C/8962', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95055, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2790, 3120]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '44', 'building_ref': 'IMB/92040/X/0123', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92482, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2748, 2902]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '65', 'building_ref': 'IMB/92040/S/8469', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92451, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2769, 2164]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '42', 'building_ref': 'IMB/92040/C/8937', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95030, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2812, 2181]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '50', 'building_ref': 'ID-92040000000Y', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92495, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2662, 1483]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '68', 'building_ref': 'IMB/92040/C/000U', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95705, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2662, 1608]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '64', 'building_ref': 'IMB/92040/C/8767', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96220, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2705, 1533]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '66', 'building_ref': 'IMB/92040/C/8769', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92307, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2705, 2349]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '46', 'building_ref': 'IMB/92040/C/8927', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96404, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2722, 2997]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '46', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92327, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2677, 2960]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '48', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92271, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2662, 2818]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '65', 'building_ref': 'IMB/92040/S/8470', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95706, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2648, 2942]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '50', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95696, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2662, 3045]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '52', 'building_ref': 'IMB/92040/C/8460', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94394, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2552, 2164]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '38', 'street_ext': 'T', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93874, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2561, 1327]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '12', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92104, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2489, 2072]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '38', 'street_ext': 'B', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95413, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2534, 2051]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403165', 'street_number': '38', 'building_ref': 'IMB/92040/X/00QS', 'street': 'RUE D EREVAN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95831, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2539, 2799]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '67', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 95234, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2491, 2928]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '54', 'building_ref': 'IMB/92040/C/8463', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91800, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2402, 2744]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '69', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94791, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2386, 1276]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '13', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91563, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2386, 1276]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '31', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93055, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2386, 1276]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '12', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94833, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2371, 1232]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '11', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92808, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2276, 1287]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '6', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91118, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2342, 2884]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '56', 'building_ref': 'IMB/92040/S/008K', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 94716, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2288, 2777]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '60', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92418, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 2848]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '58', 'building_ref': 'IMB/92040/C/008L', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92384, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2222, 2772]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '64', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92170, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2226, 2652]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '71', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94225, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2225, 1929]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '5', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93682, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2248, 1505]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '4', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93713, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2253, 1476]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '6', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91094, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 1685]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '7', 'building_ref': 'IMB/92040/S/004C', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93717, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2256, 1380]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '8', 'building_ref': 'IMB/92040/C/0254', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91099, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2235, 1263]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '4', 'building_ref': 'IMB/92040/C/9744', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92178, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2104, 1604]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '2', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91670, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2182, 2087]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '1', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 94134, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2159, 1972]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404450', 'street_number': '3', 'street': 'RUE HONORE FRAGONARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93564, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2171, 2779]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '66', 'building_ref': 'IMB/92040/C/8471', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91978, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 1862]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '2', 'building_ref': 'IMB/92040/S/0760', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99643, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 1774]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '5', 'building_ref': 'IMB/92040/S/9167', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99642, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3688, 1570]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '18', 'building_ref': 'IMB/92040/S/9383', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95638, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3688, 1351]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403130', 'street_number': '55', 'building_ref': 'IMB/92040/C/8800', 'street_ext': 'T', 'street': 'RUE DE L EGALITE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95637, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3709, 1549]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '18', 'building_ref': 'IMB/92040/S/9384', 'street_ext': 'B', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95658, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3730, 1723]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '7', 'building_ref': 'IMB/92040/S/9102', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 95680, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3730, 1682]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '9', 'building_ref': 'IMB/92040/S/9104', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99666, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3730, 1519]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '20', 'building_ref': 'IMB/92040/S/9386', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101277, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 1249]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '32', 'building_ref': 'IMB/92040/S/9397', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100171, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3858, 1295]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '30', 'building_ref': 'IMB/92040/C/9395', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96711, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 1356]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '28', 'building_ref': 'IMB/92040/S/9393', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96279, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 1565]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '17', 'building_ref': 'IMB/92040/S/9234', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96685, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3837, 1647]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '6', 'building_ref': 'IMB/92040/S/0755', 'street_ext': 'B', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101470, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3858, 1614]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '8', 'building_ref': 'IMB/92040/S/0753', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98703, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3858, 1785]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '3', 'building_ref': 'IMB/92040/S/0769', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100121, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3880, 1534]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '19', 'building_ref': 'IMB/92040/S/9385', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96962, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 1489]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '21', 'building_ref': 'IMB/92040/S/9387', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98753, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 1736]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '5', 'building_ref': 'IMB/92040/S/0758', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98754, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3901, 1585]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '10', 'building_ref': 'IMB/92040/S/0752', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96978, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3815, 1855]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '37', 'building_ref': 'IMB/92040/S/0663', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98615, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3815, 1691]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '6', 'building_ref': 'IMB/92040/X/013V', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98614, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3815, 1600]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '15', 'building_ref': 'IMB/92040/S/9275', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96267, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3815, 1392]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '26', 'building_ref': 'IMB/92040/S/9391', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101403, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3801, 1475]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '22', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98606, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3794, 1428]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '24', 'building_ref': 'IMB/92040/S/9389', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96248, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 1895]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '37', 'building_ref': 'IMB/92040/S/0667', 'street_ext': 'B', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98523, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 1795]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '4', 'building_ref': 'IMB/92040/S/0759', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101371, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3773, 1616]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '13', 'building_ref': 'IMB/92040/S/9108', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99707, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3764, 1843]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '1', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99702, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3752, 1646]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '11', 'building_ref': 'IMB/92040/C/9106', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99685, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3752, 1889]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409150', 'street_number': '39', 'building_ref': 'IMB/92040/S/0662', 'street': 'RUE TOLSTOI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 96076, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 1845]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '4', 'building_ref': 'IMB/92040/C/8780', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102539, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 1631]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '22', 'building_ref': 'IMB/92040/S/0647', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99434, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 1468]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '27', 'building_ref': 'IMB/92040/C/0654', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102538, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 1433]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '9', 'building_ref': 'IMB/92040/S/8478', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99433, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4087, 1350]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '14', 'street_ext': 'T', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100558, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 1453]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '29', 'building_ref': 'IMB/92040/S/0640', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 1596]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '22', 'building_ref': 'IMB/92040/S/0646', 'street_ext': 'B', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100504, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4029, 1372]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '14', 'building_ref': 'IMB/92040/S/8492', 'street_ext': 'B', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102432, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4029, 1580]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '24', 'building_ref': 'IMB/92040/S/0644', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100481, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 1397]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '14', 'building_ref': 'IMB/92040/C/8491', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 98982, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 1761]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '7', 'building_ref': 'IMB/92040/S/0754', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100192, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 1698]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '5', 'building_ref': 'IMB/92040/S/0757', 'street_ext': 'B', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97042, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 1544]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '10', 'building_ref': 'IMB/92040/X/00KQ', 'street_ext': 'B', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 101968, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3922, 1453]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '23', 'building_ref': 'IMB/92040/S/9388', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98772, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3944, 1494]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '26', 'building_ref': 'IMB/92040/S/0642', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100214, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3964, 1515]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408530', 'street_number': '8', 'street_ext': 'B', 'street': 'VILLA SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100230, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3965, 1387]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '31', 'building_ref': 'IMB/92040/S/0639', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97131, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3965, 1372]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '25', 'building_ref': 'IMB/92040/S/9390', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97130, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3987, 1555]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '24', 'building_ref': 'IMB/92040/S/0631', 'street_ext': 'B', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102341, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3987, 1316]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '27', 'building_ref': 'IMB/92040/S/9392', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102340, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3987, 1143]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '36', 'building_ref': 'IMB/92040/S/9400', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102339, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3944, 1198]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '34', 'building_ref': 'IMB/92040/S/00AG', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97066, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4008, 1107]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '38', 'building_ref': 'IMB/92040/S/9402', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97537, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4029, 1078]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '40', 'building_ref': 'IMB/92040/S/9404', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102431, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 1015]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '42', 'building_ref': 'IMB/92040/C/9406', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97720, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 1054]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '40', 'building_ref': 'IMB/92040/S/9405', 'street_ext': 'B', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102450, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4051, 1254]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '29', 'building_ref': 'IMB/92040/S/9408', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100502, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 1184]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '31', 'building_ref': 'IMB/92040/S/9382', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100561, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4093, 980]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '44', 'building_ref': 'IMB/92040/S/9407', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102537, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 1189]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '20', 'building_ref': 'IMB/92040/S/0766', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100683, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 1122]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '33', 'building_ref': 'IMB/92040/S/9398', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 100682, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 894]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '48', 'building_ref': 'IMB/92040/S/9367', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98101, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 1224]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '18', 'building_ref': 'IMB/92040/C/0444', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99521, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4115, 939]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400640', 'street_number': '46', 'building_ref': 'IMB/92040/S/9369', 'street': 'RUE BENOIT MALON', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4115, 1259]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '16', 'building_ref': 'IMB/92040/S/8495', 'street_ext': 'B', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97968, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4115, 1270]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '16', 'building_ref': 'IMB/92040/S/8494', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 97969, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4115, 1397]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '11', 'building_ref': 'IMB/92040/S/8489', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102558, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4115, 1382]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '13', 'building_ref': 'IMB/92040/S/8490', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102557, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4124, 1527]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '25', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 99514, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4136, 1509]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '18', 'building_ref': 'IMB/92040/S/8624', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 102663, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4122, 1583]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409635', 'street_number': '20', 'street': 'RUE VERDI', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 100603, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 1703]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '6', 'building_ref': 'IMB/92040/C/8782', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 98102, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 1356]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408525', 'street_number': '15', 'building_ref': 'IMB/92040/S/8493', 'street': 'RUE SERGENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99585, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [4157, 1479]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403145', 'street_number': '20', 'building_ref': 'IMB/92040/C/8628', 'street': 'RUE EMILE DUPLOYE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 99586, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [932, 2600]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '3', 'building_ref': 'IMB/92040/S/0731', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86833, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [953, 2747]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '115', 'building_ref': 'IMB/92040/C/0380', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85583, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [889, 2565]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '2', 'building_ref': 'IMB/92040/S/0732', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89103, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [868, 2747]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '117', 'building_ref': 'IMB/92040/C/0378', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85152, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [825, 1587]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '125', 'building_ref': 'IMB/92040/S/8502', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86509, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [864, 1443]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185A', 'street_number': '10', 'street': 'SENTIER DES ETOITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85531, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [889, 1603]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '123', 'building_ref': 'IMB/92040/S/8500', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86752, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [889, 1007]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '178', 'street_ext': 'T', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85831, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [860, 853]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '3', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86632, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [840, 1018]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '180', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [925, 1024]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '28', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85426, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [939, 881]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920235140', 'street_number': '1', 'street': 'RUE DU LIEUTENANT RAOUL BATANY', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89206, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [949, 995]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '178', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89214, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [976, 983]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '180', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87027, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [997, 1289]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '11', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89264, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1083, 981]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '176', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88485, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1082, 1070]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '3', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86171, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1077, 1175]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '6', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89465, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1061, 1216]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '8', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89462, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1064, 1117]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '5', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87754, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1048, 1158]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '7', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85853, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1036, 1195]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '9', 'street_ext': 'B', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89341, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1034, 1267]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '10', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86107, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1028, 1209]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '9', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86105, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1021, 980]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '178', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87566, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1011, 1414]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '14', 'street_ext': 'B', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87541, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1017, 1664]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '117', 'building_ref': 'IMB/92040/S/8439', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89321, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1013, 1342]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '12', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87542, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1081, 1681]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '115', 'building_ref': 'IMB/92040/S/8479', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89469, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1091, 1515]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185A', 'street_number': '6', 'street': 'SENTIER DES ETOITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89485, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1081, 1537]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185B', 'street_number': '6', 'building_ref': 'IMB/92040/X/00JO', 'street': 'SENTIER DES ETROITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86161, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1103, 1591]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '4', 'building_ref': 'IMB/92040/S/9088', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86188, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1108, 1511]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920236250', 'street_number': '1', 'street': 'SENTIER DES MONTQUARTIERS', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86289, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1124, 1524]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185A', 'street_number': '4', 'street': 'SENTIER DES ETOITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86523, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1124, 1542]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185B', 'street_number': '4', 'building_ref': 'IMB/92040/C/9010', 'street': 'SENTIER DES ETROITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86512, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1124, 1690]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '115', 'building_ref': 'IMB/92040/C/8455', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86294, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1124, 2249]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '5', 'building_ref': 'IMB/92040/S/0730', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89561, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1124, 2748]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '113', 'building_ref': 'IMB/92040/X/0151', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86295, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1167, 2132]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '9', 'building_ref': 'IMB/92040/S/0728', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89688, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1167, 2066]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '11', 'building_ref': 'IMB/92040/C/0505', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86650, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1145, 2157]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '7', 'building_ref': 'IMB/92040/S/0729', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89671, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1167, 1708]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '113', 'building_ref': 'IMB/92040/C/8454', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89687, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1167, 1663]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '2', 'building_ref': 'IMB/92040/S/001Q', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86649, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1150, 1059]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '2', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86551, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1150, 1059]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '17', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89681, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1099, 1120]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234635', 'street_number': '4', 'street': 'ALLEE DE L ILE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88505, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1199, 941]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '174', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86682, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1241, 934]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '174', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90036, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1273, 1286]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '17', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86943, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1355, 1080]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '7', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90601, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1365, 1057]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '5', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87075, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1339, 1117]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '9', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89787, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1323, 1158]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '11', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87385, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1307, 1193]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '13', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89753, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1317, 917]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '170', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87381, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1289, 936]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '172', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89736, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1288, 1239]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '15', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89735, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1288, 2160]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '9', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90127, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1295, 2107]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '7', 'building_ref': 'IMB/92040/S/9767', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86963, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1316, 2041]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '5', 'building_ref': 'IMB/92040/S/9765', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87371, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1316, 1792]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '109', 'building_ref': 'IMB/92040/X/00JL', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86977, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1359, 2214]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '12', 'building_ref': 'IMB/92040/S/9770', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90605, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1338, 2295]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '16', 'building_ref': 'IMB/92040/S/9786', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87000, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1338, 2249]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '14', 'building_ref': 'IMB/92040/S/0073', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90357, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1338, 1995]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '3', 'building_ref': 'IMB/92040/S/9764', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90356, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1338, 1969]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '88', 'building_ref': 'IMB/92040/S/8444', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90355, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1331, 1899]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '90', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90348, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1316, 2911]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '111', 'building_ref': 'IMB/92040/C/0373', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86978, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1295, 2861]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '111', 'building_ref': 'IMB/92040/C/0384', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87309, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1273, 2310]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '18', 'building_ref': 'IMB/92040/S/9760', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90110, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1270, 2200]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '11', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87282, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1252, 2091]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409550', 'street_number': '3', 'building_ref': 'IMB/92040/S/0687', 'street': 'ALLEE DE L UNION', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90043, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1266, 2112]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409550', 'street_number': '0', 'street': 'ALLEE DE L UNION', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87279, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1273, 1934]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '92', 'building_ref': 'IMB/92040/S/8447', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90109, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1273, 1781]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '111', 'building_ref': 'IMB/92040/S/8452', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87287, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1263, 1334]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '19', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89440, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1268, 1531]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '7', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90061, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1253, 1383]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '21', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86938, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1252, 1689]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '3', 'building_ref': 'IMB/92040/C/9089', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89424, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1252, 1720]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '113', 'building_ref': 'IMB/92040/S/8453', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89425, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1250, 1616]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '5', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89420, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1245, 1423]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '23', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86924, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1238, 1451]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '25', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86919, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1234, 1473]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '27', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87209, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1231, 1919]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '94', 'building_ref': 'IMB/92040/C/8449', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86813, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1231, 2091]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409550', 'street_number': '5', 'building_ref': 'IMB/92040/S/0686', 'street': 'ALLEE DE L UNION', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86814, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1251, 2241]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '13', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90040, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1209, 2285]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '15', 'building_ref': 'IMB/92040/S/9771', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89916, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1209, 2295]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '17', 'building_ref': 'IMB/92040/S/9773', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89917, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1209, 2258]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '13', 'building_ref': 'IMB/92040/X/00JM', 'street_ext': 'B', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86688, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1209, 2147]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409550', 'street_number': '2', 'building_ref': 'IMB/92040/S/0689', 'street': 'ALLEE DE L UNION', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89915, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1225, 1734]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '1', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86810, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1219, 1848]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '96', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89076, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1224, 1518]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '29', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86807, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1213, 1573]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '8', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89928, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1193, 1539]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185A', 'street_number': '2', 'street': 'SENTIER DES ETOITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89051, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1188, 1557]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403185B', 'street_number': '2', 'building_ref': 'IMB/92040/S/9009', 'street': 'SENTIER DES ETROITES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86660, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1188, 1581]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '6', 'building_ref': 'IMB/92040/S/9124', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89889, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1188, 1615]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '4', 'building_ref': 'IMB/92040/S/9087', 'street_ext': 'B', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86456, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1188, 2005]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '13', 'building_ref': 'IMB/92040/C/00AC', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86661, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1209, 2715]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '113', 'building_ref': 'IMB/92040/C/0381', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89918, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1209, 2830]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '111', 'building_ref': 'IMB/92040/C/0395', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89919, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1526, 1779]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '99', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88687, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1487, 2036]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '84', 'building_ref': 'IMB/92040/S/8441', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88389, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1466, 2138]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '82', 'building_ref': 'IMB/92040/C/8466', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90953, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1402, 2173]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '10', 'building_ref': 'IMB/92040/S/9769', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87250, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1399, 1981]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '2', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90290, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1375, 2035]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '4', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87079, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1382, 1960]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '1', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87843, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1397, 1827]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '107', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90288, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1423, 1470]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400060', 'street_number': '9', 'building_ref': 'IMB/92040/X/00WY', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90317, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1423, 2143]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '8', 'building_ref': 'IMB/92040/S/9768', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90769, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1423, 1995]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '86', 'building_ref': 'IMB/92040/C/8443', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90318, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1445, 2026]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '84', 'building_ref': 'IMB/92040/S/8442', 'street_ext': 'B', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90927, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1445, 2107]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407107', 'street_number': '6', 'building_ref': 'IMB/92040/S/9766', 'street': 'ALLEE DU PANORAMA', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90385, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1444, 993]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '4', 'street_ext': 'B', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87993, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1454, 957]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '2', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90945, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1431, 1010]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '4', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90918, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1428, 1255]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234154', 'street_number': '2', 'street': 'RUE DU GENERAL DE NEGRIER', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87984, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1428, 1255]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234154', 'street_number': '13', 'street': 'RUE DU GENERAL DE NEGRIER', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90916, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1402, 1241]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234154', 'street_number': '15', 'street': 'RUE DU GENERAL DE NEGRIER', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87263, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1403, 1078]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '6', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90759, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1410, 899]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '166', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90305, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1381, 1135]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '8', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87230, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1380, 1228]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234154', 'street_number': '15', 'street_ext': 'B', 'street': 'RUE DU GENERAL DE NEGRIER', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87660, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1369, 1048]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '3', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90619, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1371, 1158]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '10', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87653, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1370, 907]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '168', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87078, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1383, 1014]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920230065', 'street_number': '1', 'street': 'RUE ANTOINE COURBARIEN', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90635, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1461, 1097]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '11', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87456, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1515, 251]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '195', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88416, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1512, 1154]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '9', 'street_ext': 'B', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91280, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1521, 876]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '164', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88686, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1543, 1087]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '7', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88704, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1541, 1023]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '5', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88703, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1623, 874]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '1', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89160, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1596, 948]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '3', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89139, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1584, 860]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '160', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88066, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1553, 867]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '162', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90827, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1558, 1113]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920239615', 'street_number': '9', 'street': 'ALLEE DE LA VALLEE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88044, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1552, 1773]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '97', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88042, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1637, 2199]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '78', 'building_ref': 'IMB/92040/C/8448', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89167, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1594, 2191]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '80', 'building_ref': 'IMB/92040/C/8446', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88078, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1649, 1674]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '2', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89360, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1658, 2296]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '76', 'building_ref': 'IMB/92040/C/8476', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92355, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1652, 1868]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '95', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89362, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1650, 1917]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '93', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91000, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1710, 2027]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '91', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91247, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1697, 1855]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '1', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91042, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1651, 863]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '158', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89361, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1763, 822]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '156', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91400, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1905, 767]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '154', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93375, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1829, 1838]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '3', 'building_ref': 'IMB/92040/C/0420', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93164, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1829, 1644]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '4', 'building_ref': 'IMB/92040/C/0431', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89293, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1850, 1449]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '3', 'building_ref': 'IMB/92040/C/9743', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89630, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1872, 1629]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '6', 'building_ref': 'IMB/92040/C/0429', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90448, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1872, 2459]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '72', 'building_ref': 'IMB/92040/C/8474', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90449, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1808, 2372]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '74', 'building_ref': 'IMB/92040/C/8475', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89843, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2085, 2701]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '68', 'building_ref': 'IMB/92040/C/8472', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90242, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2021, 2632]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408130', 'street_number': '70', 'building_ref': 'IMB/92040/C/8473', 'street': 'BOULEVARD RODIN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92722, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1936, 1825]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '5', 'building_ref': 'IMB/92040/C/0442', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90596, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1978, 1920]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040999W', 'street_number': '7', 'building_ref': 'IMB/92040/S/0701', 'street': 'ALLEE HENRI MATISSE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92643, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1966, 739]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '150', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90810, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2013, 160]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '195', 'street_ext': 'B', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93528, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2009, 240]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '101', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91167, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2022, 625]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '146', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93732, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2062, 420]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '144', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91221, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2067, 1151]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407118', 'street_number': '5', 'street': 'RUE DE LA PASTORALE D ISSY', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90181, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2071, 342]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '142', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90185, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2080, 240]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '138', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92873, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2088, 308]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '140', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91485, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2092, 168]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '134', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93899, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2080, 178]}, 'properties': {'insee_code': '92023', 'kosc_street_code': '920234437', 'street_number': '136', 'street': 'AVENUE HENRI BARBUSSE', 'city': 'CLAMART', 'zip_code': '92140', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91465, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [886, 3412]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '8', 'street_ext': 'B', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86748, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [868, 3369]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '8', 'building_ref': 'IMB/92040/C/ZIA5', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85153, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1050, 3349]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '10', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89448, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1060, 3471]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '17', 'building_ref': 'IMB/92040/C/9954', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87741, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1081, 3018]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '144', 'building_ref': 'IMB/92040/C/0418', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86335, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1124, 3028]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '144', 'building_ref': 'IMB/92040/C/0362', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88574, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1167, 3053]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '144', 'building_ref': 'IMB/92040/C/0398', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86432, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1281, 3137]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '142', 'street_ext': 'A', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87300, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1283, 3095]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '142', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89732, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1243, 3253]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '142', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89417, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1252, 3873]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '2', 'building_ref': 'IMB/92040/C/9754', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89426, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1295, 3801]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '4', 'building_ref': 'IMB/92040/C/9755', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87310, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1338, 3766]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '6', 'building_ref': 'IMB/92040/C/9756', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87001, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1359, 3746]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '8', 'building_ref': 'IMB/92040/C/9757', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90606, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1338, 4114]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '27', 'building_ref': 'IMB/92040/C/9119', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87396, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1167, 4112]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '25', 'building_ref': 'IMB/92040/X/00SQ', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86651, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1178, 4015]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '20', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86449, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1103, 4121]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '23', 'building_ref': 'IMB/92040/X/00W0', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88508, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1073, 4102]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '21', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88468, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1017, 3532]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '15', 'building_ref': 'IMB/92040/C/9953', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85727, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1017, 4132]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '19', 'building_ref': 'IMB/92040/C/9125', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85728, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1701, 3607]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '7', 'building_ref': 'IMB/92040/C/007E', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91230, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1675, 4043]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '31', 'street_ext': 'B', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91016, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1674, 3562]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '9', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89387, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1667, 3967]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '22', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91014, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1594, 4127]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '31', 'building_ref': 'IMB/92040/C/9117', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88851, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1402, 3700]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '10', 'building_ref': 'IMB/92040/C/9758', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87866, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1402, 3552]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '16', 'building_ref': 'IMB/92040/C/8383', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90292, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1423, 3644]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '12', 'building_ref': 'IMB/92040/C/8496', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90319, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1445, 3613]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '14', 'building_ref': 'IMB/92040/C/8381', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87994, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1472, 3830]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '1', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91056, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1527, 3758]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '3', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90705, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1527, 3758]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '5', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91291, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1530, 3492]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '18', 'building_ref': 'IMB/92040/X/00Y4', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87793, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1508, 3252]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '138', 'building_ref': 'IMB/92040/C/0419', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90546, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1505, 3071]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '107', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91265, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1445, 3018]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '109', 'building_ref': 'IMB/92040/C/0386', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87430, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1416, 3138]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '140', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90765, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1555, 3093]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '107', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90828, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1572, 3298]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '136', 'building_ref': 'IMB/92040/C/236I', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88051, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1587, 3109]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '107', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88070, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1594, 3499]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '18', 'building_ref': 'IMB/92040/X/00Z0', 'street_ext': 'B', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88850, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1637, 3485]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '18', 'building_ref': 'IMB/92040/X/00Z1', 'street_ext': 'T', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91881, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1637, 3359]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '134', 'building_ref': 'IMB/92040/C/0396', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88167, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1713, 3409]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '20', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89528, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1872, 3374]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '132', 'building_ref': 'IMB/92040/C/0410', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90450, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1850, 3021]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040001P', 'street_number': '8', 'building_ref': 'IMB/92040/X/00YV', 'street': 'VOIE NOUVELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91803, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1850, 3083]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040001P', 'street_number': '4', 'building_ref': 'IMB/92040/X/00YU', 'street': 'VOIE NOUVELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89631, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1850, 3083]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040001P', 'street_number': '6', 'street': 'VOIE NOUVELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90425, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1850, 3052]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '92040001P', 'street_number': '2', 'building_ref': 'IMB/92040/X/00YT', 'street': 'VOIE NOUVELLE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91804, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1832, 3182]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406192', 'street_number': '2', 'street': 'ALLEE OLYMPE DE GOUGES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90008, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1829, 3130]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406192', 'street_number': '6', 'street': 'ALLEE OLYMPE DE GOUGES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 90007, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1829, 3130]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406192', 'street_number': '4', 'street': 'ALLEE OLYMPE DE GOUGES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91609, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1830, 3082]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920406192', 'street_number': '8', 'street': 'ALLEE OLYMPE DE GOUGES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89306, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1829, 3023]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '105', 'building_ref': 'IMB/92040/X/00UJ', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89993, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1829, 3451]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '15', 'building_ref': 'IMB/92040/C/8382', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89994, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1819, 3370]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '41', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89989, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1819, 3370]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '0', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91598, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1819, 3370]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '17', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91599, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1808, 3067]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '105', 'building_ref': 'IMB/92040/X/00YO', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89976, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1808, 3492]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '13', 'building_ref': 'IMB/92040/S/8420', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91533, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1744, 3502]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920407125', 'street_number': '11', 'building_ref': 'IMB/92040/S/0190', 'street': 'RUE PAUL BERT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 91376, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1786, 3972]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '28', 'building_ref': 'IMB/92040/X/0155', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88809, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1872, 3873]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '24', 'building_ref': 'IMB/92040/C/9122', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89652, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2043, 4076]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '51', 'building_ref': 'IMB/92040/C/9050', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 92828, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2021, 3874]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '26', 'building_ref': 'IMB/92040/C/9120', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92723, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2046, 3930]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '26', 'street_ext': 'B', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92845, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2064, 3477]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '126', 'building_ref': 'IMB/92040/C/0415', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 93814, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2053, 3325]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '99', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93761, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2000, 3446]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '128', 'building_ref': 'IMB/92040/C/0413', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 90075, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [2000, 3301]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '101', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 91152, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1980, 3400]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '130', 'street_ext': 'A', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 93497, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1957, 3426]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '130', 'building_ref': 'IMB/92040/C/0411', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89949, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1947, 3385]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '130', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92616, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [1935, 3271]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '103', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 92017, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [227, 3582]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '10', 'building_ref': 'IMB/92040/S/009I', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87617, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [163, 3547]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '12', 'building_ref': 'IMB/92040/C/009J', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 82689, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [164, 3971]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '14', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82696, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [164, 3971]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '25', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82891, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [164, 3971]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '96', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82892, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [164, 3971]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '76', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83366, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [164, 3971]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '193', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87514, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [147, 3913]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '27', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87498, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-19, 3953]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '21', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86888, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [35, 3800]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '8', 'building_ref': 'IMB/92040/C/8827', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 82373, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [68, 3975]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '23', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82246, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [47, 3768]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '10', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87126, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [68, 3519]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '29', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82247, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [86, 3193]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '33', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82631, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [55, 3339]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '31', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82299, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [56, 2723]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '33', 'building_ref': 'IMB/92040/C/00BP', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 82230, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3, 2951]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '0', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 81916, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3, 2951]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '3', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 81917, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3, 2951]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '1', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82167, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3, 2951]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '62', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82168, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3, 2951]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '23', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82208, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [3, 2951]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '15', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86910, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [15, 2488]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '162', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82275, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [41, 2500]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '160', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82219, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [35, 2809]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '31', 'building_ref': 'IMB/92040/S/9324', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 82372, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-8, 2878]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '80', 'building_ref': 'IMB/92040/S/009G', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 81590, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-27, 2745]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920402550', 'street_number': '33', 'street_ext': 'B', 'street': 'RUE DU DOCTEUR LOMBARD', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 81574, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-28, 3350]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '27', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82179, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [-43, 3425]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920403531', 'street_number': '1', 'street': 'ESPLANADE RAOUL FOLLEREAU', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82031, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [110, 3113]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '35', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82588, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [115, 3083]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '37', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82590, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [131, 2974]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '39', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87347, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [134, 2853]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '18', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82612, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [159, 2744]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '42', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82684, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [177, 2831]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '41', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 82906, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [163, 2589]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '158', 'building_ref': 'IMB/92040/C/009V', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [205, 3304]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '16', 'building_ref': 'IMB/92040/C/009L', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83104, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [205, 3336]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '14', 'building_ref': 'IMB/92040/S/009K', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83105, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [219, 2703]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '0', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83503, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [219, 2703]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '10', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83504, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [219, 2703]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '29', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83505, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [248, 2452]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '139', 'building_ref': 'IMB/92040/X/00OU', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83200, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [248, 2706]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '43', 'building_ref': 'IMB/92040/C/0521', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87679, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [248, 2744]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408840', 'street_number': '43', 'building_ref': 'ID-92040000005Z', 'street': 'ALLEE SAINTE LUCIE', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 87680, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [269, 2630]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '156', 'building_ref': 'IMB/92040/X/00PQ', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83733, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [419, 2501]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '135', 'building_ref': 'IMB/92040/C/0407', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87974, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [416, 2673]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '154', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83354, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [434, 3450]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '18', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84250, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [419, 3324]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '22', 'building_ref': 'IMB/92040/X/00I8', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83358, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [376, 3391]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '20', 'building_ref': 'IMB/92040/S/009M', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83682, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [343, 2530]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '137', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83479, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [348, 2642]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '154', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83933, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [283, 3933]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '2', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83157, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [344, 3736]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '4', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83480, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [358, 3692]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '6', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83676, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [384, 3610]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '8', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 87938, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [398, 3955]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '3', 'building_ref': 'ID-92040000004U', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83329, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [398, 3899]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '5', 'building_ref': 'ID-92040000002Y', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83328, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [419, 3858]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '9', 'building_ref': 'ID-920400000055', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83866, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [450, 4163]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '3', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83440, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [441, 4009]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '1', 'building_ref': 'IMB/92040/C/0520', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84254, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [446, 3631]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '7', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83437, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [568, 4003]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '10', 'building_ref': 'IMB/92040/C/9133', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84817, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [611, 3577]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '1', 'building_ref': 'IMB/92040/C/9997', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88461, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [620, 3124]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '15', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88529, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [611, 3383]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '2', 'building_ref': 'IMB/92040/C/9998', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84404, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [611, 2626]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '131', 'building_ref': 'IMB/92040/X/00XT', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84403, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [633, 2634]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '129', 'building_ref': 'IMB/92040/X/0116', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88539, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [568, 2590]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '131', 'building_ref': 'IMB/92040/X/00YK', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88428, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [588, 3212]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '13', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84066, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [565, 3271]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '11', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85184, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [526, 2995]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '152', 'building_ref': 'IMB/92040/C/009U', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84572, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [538, 3129]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '26', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83976, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [526, 2559]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '131', 'building_ref': 'IMB/92040/X/00ZO', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88323, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [505, 2541]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '131', 'building_ref': 'IMB/92040/X/00ZP', 'street_ext': 'Q', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84456, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [505, 2583]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '133', 'building_ref': 'IMB/92040/X/00ZQ', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84457, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [505, 2753]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '152', 'building_ref': 'IMB/92040/C/0344', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84297, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [498, 3255]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '24', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 83841, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [472, 2699]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '152', 'street_ext': 'T', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84380, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [462, 2541]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '133', 'building_ref': 'IMB/92040/X/00ZR', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 83445, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [483, 2564]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '131', 'building_ref': 'IMB/92040/X/00ZN', 'street_ext': 'B', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88224, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [804, 2722]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '119', 'building_ref': 'IMB/92040/C/0376', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 86485, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [782, 3379]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '6', 'building_ref': 'IMB/92040/C/0001', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84841, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [768, 2727]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '121', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85131, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [740, 2875]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '150', 'building_ref': 'IMB/92040/C/0345', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88870, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [740, 2691]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '123', 'building_ref': 'IMB/92040/C/0408', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84719, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [718, 3049]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '21', 'building_ref': 'ID-920400000056', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88762, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [697, 3382]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '4', 'building_ref': 'IMB/92040/C/RPSK', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85708, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [709, 2836]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '0', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 88756, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [718, 2920]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '23', 'building_ref': 'IMB/92040/C/0556', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84647, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [718, 2610]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '125', 'building_ref': 'IMB/92040/C/0417', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84646, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [675, 2639]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '127', 'building_ref': 'IMB/92040/X/00ZX', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85009, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [654, 3100]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '19', 'building_ref': 'ID-920400000026', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85579, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [638, 3077]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920408900', 'street_number': '17', 'street': 'COURS SAINT VINCENT', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84935, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [654, 3994]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '12', 'building_ref': 'IMB/92040/C/9132', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85580, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [640, 4043]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '12', 'street_ext': 'B', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 84937, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [675, 3558]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '3', 'building_ref': 'IMB/92040/C/9999', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88678, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [697, 3994]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '14', 'building_ref': 'IMB/92040/C/9131', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84617, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [740, 3990]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '14', 'building_ref': 'IMB/92040/C/9130', 'street_ext': 'B', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 84720, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [740, 3553]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '5', 'building_ref': 'IMB/92040/C/0000', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 88871, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [782, 4131]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '9', 'street_ext': 'B', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85227, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [846, 3968]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '16', 'building_ref': 'IMB/92040/C/9128', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85515, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [868, 3546]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '7', 'building_ref': 'IMB/92040/C/9963', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85536, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [889, 3899]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '16', 'building_ref': 'IMB/92040/C/9127', 'street_ext': 'B', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89104, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [953, 4127]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '15', 'building_ref': 'IMB/92040/C/9129', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85584, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [924, 4117]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '13', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 86829, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [910, 3968]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '18', 'building_ref': 'IMB/92040/X/013M', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 0}, 'id': 89130, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [910, 3750]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '13', 'building_ref': 'IMB/92040/C/9952', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85841, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [932, 3653]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '11', 'building_ref': 'IMB/92040/C/9951', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85917, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [932, 3536]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920404400', 'street_number': '9', 'building_ref': 'IMB/92040/C/9961', 'street': 'VILLA HAUSSMANN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89195, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [996, 4132]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920400070', 'street_number': '17', 'building_ref': 'IMB/92040/C/9112', 'street': 'RUE ARISTIDE BRIAND', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 85621, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [957, 2925]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '146', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85593, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [910, 2636]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409660', 'street_number': '1', 'building_ref': 'IMB/92040/C/0511', 'street': 'CHEMIN DES VIGNES', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 1, 'is_ftte': 0, 'is_ftth': 1}, 'id': 89129, 'type': 'Feature'}, {'geometry': {'type': 'Point', 'coordinates': [920, 2908]}, 'properties': {'insee_code': '92040', 'kosc_street_code': '920409640', 'street_number': '148', 'street': 'AVENUE DE VERDUN', 'city': 'ISSY LES MOULINEAUX', 'zip_code': '92130', 'building_count': 0, 'is_ftte': 0, 'is_ftth': 0}, 'id': 85909, 'type': 'Feature'}], 'type': 'FeatureCollection'}, 'parcels': {'extent': 4096, 'version': 2, 'features': [{'geometry': {'type': 'MultiPolygon', 'coordinates': [[[[4160, 84], [4160, 7], [4071, -61], [4067, -64], [3968, -64], [4075, 17], [4106, 33], [3945, 238], [4105, 41], [4138, 61], [4135, 64], [4160, 84]]], [[[3289, 1799], [3290, 1804], [3336, 1860], [3181, 2150], [3088, 2229], [2990, 2412], [2972, 2480], [2996, 2492], [2999, 2548], [3034, 2620], [3065, 2651], [3113, 2680], [3120, 2684], [3239, 2730], [3218, 2791], [3253, 2751], [3258, 2737], [3264, 2739], [3307, 2690], [3273, 2677], [3177, 2641], [3147, 2629], [3108, 2606], [3077, 2573], [3060, 2539], [3053, 2501], [3063, 2447], [3073, 2427], [3126, 2445], [3165, 2459], [3208, 2474], [3236, 2484], [3332, 2520], [3331, 2522], [3415, 2555], [3415, 2554], [3424, 2558], [3431, 2550], [3410, 2541], [3372, 2526], [3341, 2514], [3343, 2510], [3271, 2484], [3242, 2474], [3204, 2460], [3173, 2449], [3079, 2415], [3128, 2324], [3147, 2288], [3150, 2284], [3178, 2232], [3199, 2192], [3217, 2158], [3236, 2124], [3255, 2088], [3276, 2050], [3323, 1962], [3358, 1898], [3383, 1850], [3466, 1947], [3496, 1981], [3522, 2011], [3550, 2044], [3566, 2062], [3588, 2088], [3614, 2117], [3618, 2122], [3613, 2132], [3646, 2165], [3649, 2157], [3673, 2185], [3705, 2223], [3712, 2231], [3753, 2184], [3734, 2164], [3616, 2027], [3596, 2003], [3526, 1923], [3543, 1888], [3550, 1874], [3639, 1913], [3665, 1924], [3794, 1980], [3810, 2014], [3840, 2028], [3872, 2043], [3876, 2045], [3912, 2004], [3905, 2001], [3883, 1990], [3845, 1973], [3786, 1946], [3772, 1940], [3739, 1925], [3721, 1917], [3711, 1913], [3701, 1908], [3670, 1894], [3651, 1885], [3577, 1852], [3622, 1790], [3644, 1760], [3685, 1703], [3705, 1674], [3727, 1645], [3749, 1614], [3769, 1587], [3793, 1554], [3821, 1515], [3850, 1476], [3878, 1437], [3909, 1430], [3945, 1457], [3960, 1468], [3983, 1485], [4001, 1498], [4040, 1528], [4071, 1551], [4104, 1575], [4134, 1598], [4160, 1616], [4160, 1534], [4137, 1536], [4115, 1519], [4074, 1489], [4021, 1449], [3953, 1399], [3940, 1389], [3936, 1363], [3963, 1328], [4017, 1257], [4069, 1189], [4120, 1122], [4150, 1083], [4160, 1071], [4160, 985], [4156, 990], [4126, 1030], [4095, 1070], [4078, 1093], [4060, 1116], [4034, 1151], [4001, 1194], [3958, 1250], [3916, 1305], [3875, 1365], [3853, 1402], [3833, 1431], [3811, 1460], [3790, 1490], [3748, 1547], [3728, 1575], [3707, 1603], [3686, 1632], [3665, 1662], [3643, 1691], [3622, 1720], [3602, 1748], [3560, 1806], [3538, 1837], [3467, 1804], [3468, 1803], [3397, 1773], [3345, 1714], [3205, 1580], [3216, 1568], [3217, 1549], [3180, 1514], [3162, 1514], [3150, 1527], [3011, 1391], [2766, 1094], [2723, 1042], [2695, 1008], [2685, 996], [2650, 953], [2613, 909], [2589, 880], [2546, 828], [2504, 779], [2460, 812], [2505, 865], [3036, 1500], [3086, 1551], [3085, 1559], [3158, 1646], [3187, 1646], [3219, 1676], [3335, 1793], [3336, 1807], [3323, 1832], [3289, 1799]]], [[[3344, 2510], [3363, 2471], [3343, 2510], [3344, 2510]]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171713, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[116, 1864], [227, 1487], [236, 1353], [37, 1336], [-64, 1310], [-64, 1748], [-52, 1751], [35, 1797], [76, 1820], [116, 1864]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63375, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1257, 1357], [1267, 1307], [1132, 1278], [1113, 1325], [1257, 1357]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12119, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[560, 1366], [574, 1330], [484, 1308], [488, 1363], [560, 1366]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10058, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[985, 1375], [1000, 1337], [920, 1306], [905, 1345], [985, 1375]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10992, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1076, 1418], [1107, 1341], [1012, 1305], [982, 1382], [1076, 1418]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11568, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[619, 1562], [669, 1396], [651, 1392], [602, 1552], [619, 1562]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66400, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[76, 1820], [35, 1797], [-44, 1755], [76, 1820]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171597, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[-45, 1755], [-52, 1751], [-64, 1748], [-64, 1749], [-45, 1755]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171627, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[759, 1604], [803, 1424], [766, 1419], [719, 1598], [759, 1604]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66956, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[810, 1611], [854, 1434], [803, 1424], [759, 1604], [810, 1611]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67619, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[719, 1598], [766, 1419], [729, 1411], [678, 1587], [719, 1598]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66511, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[678, 1587], [729, 1411], [700, 1404], [647, 1575], [678, 1587]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66459, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[647, 1575], [672, 1491], [643, 1482], [619, 1562], [647, 1575]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67015, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1002, 1609], [1044, 1493], [998, 1470], [968, 1558], [954, 1601], [1002, 1609]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64113, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1018, 1613], [1003, 1608], [1002, 1609], [954, 1601], [1018, 1613]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171545, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[998, 1675], [1018, 1613], [954, 1601], [938, 1650], [998, 1675]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65744, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[938, 1650], [956, 1596], [928, 1590], [914, 1639], [938, 1650]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65682, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[881, 1627], [893, 1585], [956, 1596], [968, 1558], [902, 1539], [877, 1626], [881, 1627]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67746, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[865, 1622], [908, 1476], [988, 1499], [998, 1470], [910, 1448], [859, 1621], [865, 1622]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63591, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[872, 1624], [905, 1510], [977, 1531], [988, 1499], [908, 1476], [865, 1622], [872, 1624]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68427, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[877, 1626], [902, 1539], [968, 1558], [977, 1531], [905, 1510], [872, 1624], [877, 1626]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67815, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[859, 1621], [910, 1448], [854, 1434], [810, 1611], [859, 1621]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67669, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[949, 1819], [973, 1747], [860, 1699], [846, 1747], [949, 1819]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66830, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[914, 1639], [928, 1590], [893, 1585], [881, 1627], [914, 1639]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65630, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1033, 1820], [1046, 1778], [1012, 1764], [998, 1808], [1033, 1820]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66780, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1037, 1691], [1078, 1573], [1022, 1552], [1003, 1608], [1018, 1613], [998, 1675], [1037, 1691]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65040, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1067, 1704], [1092, 1635], [1059, 1628], [1037, 1691], [1067, 1704]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66252, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1078, 1573], [1100, 1517], [1044, 1493], [1022, 1552], [1078, 1573]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64515, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1097, 1717], [1126, 1642], [1092, 1633], [1067, 1704], [1097, 1717]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68283, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1195, 1655], [1196, 1648], [1126, 1632], [1136, 1583], [1079, 1571], [1059, 1628], [1195, 1655]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64629, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1152, 1741], [1152, 1647], [1126, 1642], [1097, 1717], [1152, 1741]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68224, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1152, 1647], [1119, 1640], [1126, 1642], [1152, 1647]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171542, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1207, 1599], [1219, 1542], [1100, 1517], [1079, 1571], [1136, 1583], [1207, 1599]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64245, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1164, 1746], [1177, 1738], [1187, 1694], [1152, 1686], [1152, 1741], [1164, 1746]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67509, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1196, 1648], [1207, 1599], [1136, 1583], [1126, 1632], [1196, 1648]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67559, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1187, 1694], [1195, 1655], [1152, 1647], [1152, 1686], [1187, 1694]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67705, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[399, 1366], [395, 1337], [344, 1326], [337, 1356], [399, 1366]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9284, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1248, 1402], [1257, 1357], [1113, 1325], [1107, 1341], [1096, 1368], [1248, 1402]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12027, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[970, 1412], [985, 1375], [905, 1345], [891, 1382], [970, 1412]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9210, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[639, 1428], [651, 1392], [570, 1375], [562, 1404], [639, 1428]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65827, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1238, 1446], [1248, 1402], [1096, 1368], [1078, 1412], [1238, 1446]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11888, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[935, 1448], [951, 1405], [891, 1382], [873, 1432], [935, 1448]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12879, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1061, 1454], [1076, 1418], [982, 1382], [968, 1417], [1061, 1454]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11203, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[509, 1456], [533, 1371], [479, 1371], [493, 1425], [509, 1456]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65189, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1122, 1467], [1130, 1428], [1238, 1446], [1078, 1412], [1061, 1454], [1122, 1467]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11492, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1025, 1476], [1040, 1445], [968, 1417], [955, 1451], [1025, 1476]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12189, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[526, 1483], [549, 1405], [553, 1371], [533, 1371], [509, 1456], [526, 1483]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65283, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1229, 1491], [1237, 1451], [1130, 1428], [1122, 1467], [1153, 1474], [1229, 1491]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9219, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[672, 1491], [700, 1404], [669, 1396], [643, 1482], [672, 1491]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67077, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[544, 1505], [573, 1407], [562, 1404], [570, 1375], [553, 1371], [549, 1405], [526, 1483], [544, 1505]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65349, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[568, 1527], [603, 1417], [573, 1407], [544, 1505], [568, 1527]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65771, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1220, 1536], [1229, 1491], [1153, 1474], [1152, 1495], [1134, 1492], [1133, 1517], [1220, 1536]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9586, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[602, 1552], [643, 1417], [639, 1428], [602, 1552]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171561, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[602, 1552], [639, 1428], [603, 1417], [568, 1527], [602, 1552]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65878, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[401, 1560], [437, 1483], [401, 1380], [236, 1353], [223, 1553], [329, 1535], [401, 1560]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64765, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1057, 4160], [1052, 4104], [1008, 4109], [1012, 4160], [1057, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74854, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[488, 4160], [488, 4159], [477, 4160], [488, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76377, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[560, 4160], [560, 4152], [488, 4159], [488, 4160], [560, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73264, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[646, 4160], [645, 4144], [560, 4152], [560, 4160], [646, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73341, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[730, 4160], [728, 4136], [645, 4144], [646, 4160], [730, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73436, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[805, 4160], [803, 4129], [728, 4136], [730, 4160], [805, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74192, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[918, 4160], [915, 4118], [803, 4129], [805, 4160], [918, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74276, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[944, 4160], [940, 4115], [915, 4118], [918, 4160], [944, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74439, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[970, 4160], [966, 4113], [940, 4115], [944, 4160], [970, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74928, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1012, 4160], [1008, 4109], [966, 4113], [970, 4160], [1012, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74991, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1475, 4160], [1492, 4083], [1476, 4063], [1337, 4077], [1280, 4128], [1273, 4160], [1475, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71537, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1221, 4160], [1234, 4100], [1222, 4088], [1125, 4097], [1130, 4160], [1221, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75620, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1130, 4160], [1125, 4097], [1097, 4100], [1102, 4160], [1130, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75529, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1102, 4160], [1097, 4100], [1052, 4104], [1057, 4160], [1102, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75100, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[263, 1032], [320, 928], [249, 888], [202, 977], [235, 995], [226, 1012], [263, 1032]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2347, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[320, 928], [359, 856], [209, 775], [171, 817], [234, 856], [224, 874], [320, 928]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1466, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[341, 632], [406, 580], [196, 475], [170, 522], [341, 632]]]}, 'properties': {'insee_code': '92048', 'forfait_mode': 1}, 'id': 113828, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[402, 578], [411, 568], [311, 513], [333, 470], [268, 439], [255, 402], [241, 395], [196, 475], [402, 578]]]}, 'properties': {'insee_code': '92048', 'forfait_mode': 1}, 'id': 124316, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[359, 856], [429, 730], [447, 576], [209, 775], [359, 856]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 129, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[394, 1307], [397, 1271], [276, 1242], [261, 1273], [394, 1307]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8035, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[397, 1271], [413, 1202], [307, 1178], [276, 1242], [397, 1271]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8207, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[378, 1041], [395, 1007], [330, 973], [312, 1007], [378, 1041]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2042, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[452, 528], [458, 476], [372, 423], [278, 368], [255, 402], [268, 439], [452, 528]]]}, 'properties': {'insee_code': '92048', 'forfait_mode': 1}, 'id': 124328, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[487, 953], [505, 902], [449, 885], [444, 900], [387, 870], [367, 906], [452, 950], [457, 937], [487, 953]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1765, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[460, 856], [491, 775], [467, 743], [474, 729], [468, 721], [408, 829], [460, 856]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 347, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[460, 1089], [484, 1061], [416, 1020], [395, 1007], [378, 1041], [460, 1089]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2196, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[444, 900], [460, 856], [408, 829], [387, 870], [444, 900]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1716, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[424, 1142], [460, 1089], [391, 1049], [356, 1115], [424, 1142]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2289, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[430, 992], [452, 950], [367, 906], [349, 939], [413, 971], [409, 979], [430, 992]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1811, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[411, 568], [452, 528], [333, 470], [311, 513], [411, 568]]]}, 'properties': {'insee_code': '92048', 'forfait_mode': 1}, 'id': 124327, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[416, 1020], [430, 992], [409, 979], [413, 971], [349, 939], [330, 973], [416, 1020]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1915, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[409, 1171], [424, 1142], [342, 1109], [325, 1143], [320, 1152], [409, 1171]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1641, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[413, 1202], [424, 1175], [320, 1152], [308, 1176], [413, 1202]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8381, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[588, 1292], [600, 1259], [488, 1223], [477, 1260], [588, 1292]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10361, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[542, 1016], [573, 1000], [487, 953], [457, 937], [444, 965], [542, 1016]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1861, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[523, 908], [553, 811], [535, 808], [515, 781], [473, 892], [523, 908]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2488, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[484, 863], [515, 781], [498, 758], [491, 775], [461, 855], [484, 863]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3733, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[484, 1061], [542, 1016], [444, 965], [416, 1020], [484, 1061]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 1992, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[491, 775], [498, 758], [474, 729], [467, 743], [491, 775]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2444, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[573, 1000], [613, 981], [520, 933], [528, 909], [505, 902], [487, 953], [573, 1000]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3631, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[600, 1259], [613, 1223], [518, 1190], [500, 1227], [600, 1259]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10117, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[613, 1223], [625, 1192], [526, 1154], [505, 1186], [613, 1223]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10172, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[625, 1192], [637, 1161], [554, 1126], [526, 1154], [625, 1192]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11067, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[632, 941], [643, 912], [556, 885], [577, 814], [553, 811], [523, 908], [632, 941]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2684, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[613, 981], [672, 964], [675, 954], [528, 909], [520, 933], [613, 981]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2627, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[637, 1161], [653, 1124], [671, 1076], [600, 1104], [586, 1098], [554, 1126], [637, 1161]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3549, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[643, 912], [653, 884], [591, 864], [604, 819], [577, 814], [556, 885], [643, 912]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2828, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[675, 954], [719, 837], [604, 819], [591, 864], [653, 884], [632, 941], [675, 954]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2578, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[688, 1139], [721, 1049], [677, 1060], [652, 1126], [688, 1139]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3475, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[672, 964], [717, 954], [758, 843], [719, 837], [675, 954], [672, 964]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2521, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[724, 1153], [767, 1039], [721, 1049], [688, 1139], [724, 1153]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3383, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[762, 944], [806, 935], [835, 856], [789, 849], [785, 859], [792, 861], [762, 944]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3846, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[808, 1184], [871, 1017], [812, 1030], [760, 1166], [808, 1184]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2984, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[760, 1166], [812, 1030], [789, 1034], [771, 1081], [742, 1160], [760, 1166]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4415, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[742, 1160], [789, 1034], [767, 1039], [724, 1153], [742, 1160]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3311, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[717, 954], [762, 944], [792, 861], [785, 859], [789, 849], [758, 843], [717, 954]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2777, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[844, 1198], [850, 1181], [914, 1008], [871, 1017], [808, 1184], [844, 1198]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5197, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[806, 935], [882, 919], [890, 865], [835, 856], [806, 935]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4062, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[879, 938], [1007, 910], [1007, 884], [890, 865], [879, 938]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4206, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[942, 1140], [998, 991], [914, 1008], [875, 1114], [942, 1140]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5143, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1000, 1337], [1012, 1305], [1033, 1251], [850, 1181], [844, 1198], [875, 1210], [863, 1242], [898, 1255], [884, 1292], [1000, 1337]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 2880, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1014, 1244], [1039, 1178], [875, 1114], [850, 1181], [1014, 1244]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4599, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1040, 1178], [1056, 1135], [958, 1097], [942, 1140], [1040, 1178]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4649, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1110, 1052], [1146, 960], [1042, 981], [1028, 1021], [1110, 1052]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3988, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1107, 1341], [1138, 1262], [1042, 1226], [1012, 1305], [1107, 1341]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9487, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1072, 1097], [1091, 1045], [1028, 1021], [1008, 1072], [1072, 1097]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3544, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1008, 1072], [1042, 981], [998, 991], [972, 1058], [1008, 1072]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 3929, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1056, 1135], [1072, 1097], [972, 1058], [958, 1097], [1056, 1135]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5586, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1199, 1110], [1221, 1054], [1143, 1024], [1121, 1080], [1199, 1110]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4224, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1221, 1054], [1239, 1007], [1205, 994], [1226, 944], [1183, 952], [1164, 968], [1143, 1024], [1221, 1054]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7079, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1267, 1307], [1277, 1263], [1158, 1213], [1132, 1278], [1267, 1307]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12271, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1277, 1263], [1298, 1212], [1178, 1162], [1168, 1187], [1158, 1213], [1277, 1263]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4817, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1239, 1007], [1249, 984], [1239, 979], [1257, 937], [1226, 944], [1205, 994], [1239, 1007]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6653, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1298, 1212], [1315, 1172], [1194, 1121], [1178, 1162], [1298, 1212]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4741, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1315, 1172], [1329, 1139], [1207, 1088], [1199, 1110], [1194, 1121], [1315, 1172]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4345, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1168, 851], [1780, 721], [1862, 680], [1922, 616], [1955, 550], [1995, 384], [2007, 270], [1997, 254], [2001, 216], [2015, 202], [2044, -64], [575, -64], [564, 19], [800, 99], [520, 476], [504, 664], [575, 751], [1168, 851]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10254, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1340, 1028], [1391, 909], [1351, 917], [1310, 1016], [1340, 1028]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6117, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1359, 1069], [1367, 1051], [1312, 1025], [1303, 1045], [1359, 1069]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6046, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1367, 1051], [1371, 1042], [1310, 1016], [1320, 992], [1294, 983], [1286, 1001], [1263, 990], [1250, 1023], [1303, 1045], [1312, 1025], [1367, 1051]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5520, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1286, 1001], [1294, 983], [1320, 992], [1351, 917], [1257, 937], [1239, 979], [1286, 1001]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6541, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1349, 1093], [1359, 1069], [1250, 1023], [1263, 990], [1249, 984], [1226, 1041], [1349, 1093]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7152, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1329, 1139], [1349, 1093], [1226, 1041], [1221, 1054], [1207, 1088], [1329, 1139]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4125, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[574, 1330], [588, 1292], [477, 1260], [471, 1305], [574, 1330]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10527, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[70, 1339], [57, 1337], [14, 1330], [37, 1336], [70, 1339]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171554, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[395, 1337], [394, 1307], [315, 1287], [300, 1317], [395, 1337]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8634, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 4160], [4160, 4061], [4154, 4063], [4122, 4160], [4160, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115498, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3576, 4078], [3805, 4160], [3937, 4160], [3930, 4157], [3893, 4142], [3822, 4114], [3691, 4061], [3610, 4028], [3509, 3987], [3396, 3986], [3407, 4012], [3576, 4078]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 169949, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 3388], [4160, 3128], [4080, 3154], [3876, 3121], [3816, 3323], [3904, 3345], [3900, 3352], [4160, 3388]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115496, 'type': 'Feature'}, {'geometry': {'type': 'MultiPolygon', 'coordinates': [[[[4160, 3688], [4160, 3626], [4120, 3610], [4014, 3584], [4004, 3643], [4030, 3646], [4133, 3672], [4160, 3688]]], [[[4084, 4079], [4154, 4063], [4135, 4043], [4160, 4031], [4160, 4017], [4142, 4022], [4130, 4024], [4066, 4022], [4024, 4017], [4005, 4011], [3958, 3991], [3865, 3991], [3874, 3994], [3944, 4025], [3976, 4040], [4024, 4054], [4092, 4054], [4084, 4079]]], [[[4160, 4046], [4154, 4063], [4160, 4061], [4160, 4046]]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 169907, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3436, 3718], [3467, 3647], [3392, 3616], [3362, 3686], [3436, 3718]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75853, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3467, 3647], [3515, 3537], [3443, 3498], [3392, 3616], [3467, 3647]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75826, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3515, 3752], [3552, 3662], [3475, 3629], [3436, 3718], [3515, 3752]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76587, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3506, 3986], [3552, 3880], [3468, 3844], [3421, 3951], [3506, 3986]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82508, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3552, 3880], [3562, 3857], [3479, 3820], [3468, 3844], [3552, 3880]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83721, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3513, 3645], [3552, 3555], [3515, 3537], [3475, 3629], [3513, 3645]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75995, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3521, 3452], [3607, 3284], [3583, 3276], [3486, 3432], [3521, 3452]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115962, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3486, 3432], [3583, 3276], [3577, 3274], [3558, 3267], [3465, 3420], [3486, 3432]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115963, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3465, 3420], [3558, 3267], [3535, 3259], [3443, 3407], [3465, 3420]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115964, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3443, 3407], [3535, 3259], [3511, 3250], [3421, 3393], [3443, 3407]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115391, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3421, 3393], [3511, 3250], [3485, 3241], [3399, 3380], [3421, 3393]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115392, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3399, 3380], [3485, 3241], [3465, 3234], [3382, 3369], [3399, 3380]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115393, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3382, 3369], [3465, 3234], [3445, 3227], [3364, 3358], [3382, 3369]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115394, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3364, 3358], [3445, 3227], [3421, 3218], [3343, 3345], [3364, 3358]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115395, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3343, 3345], [3421, 3218], [3398, 3210], [3322, 3332], [3343, 3345]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115396, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3322, 3332], [3398, 3210], [3367, 3199], [3295, 3315], [3322, 3332]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115397, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3295, 3315], [3367, 3199], [3337, 3188], [3327, 3184], [3261, 3294], [3295, 3315]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115398, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3261, 3294], [3327, 3184], [3280, 3168], [3217, 3267], [3261, 3294]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115400, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3261, 3552], [3323, 3424], [3261, 3384], [3251, 3406], [3200, 3522], [3261, 3552]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81021, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3201, 3521], [3251, 3406], [3188, 3369], [3196, 3344], [3183, 3337], [3132, 3434], [3201, 3521]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80976, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3148, 3641], [3226, 3634], [3261, 3552], [3200, 3522], [3148, 3641]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75125, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3319, 4160], [3277, 4100], [3248, 4160], [3319, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82277, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3421, 3951], [3479, 3820], [3294, 3742], [3209, 3729], [3163, 3738], [3294, 3900], [3421, 3951]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77508, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3362, 3686], [3433, 3520], [3313, 3447], [3227, 3632], [3362, 3686]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81202, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3276, 4098], [3179, 3955], [2963, 3857], [2939, 3859], [2861, 3905], [2853, 3928], [2961, 3945], [3255, 4081], [3276, 4098]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82219, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3095, 3625], [3148, 3505], [3114, 3484], [3055, 3572], [3095, 3625]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84117, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3110, 3646], [3141, 3642], [3095, 3625], [3110, 3646]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84786, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3148, 3641], [3201, 3521], [3163, 3473], [3096, 3621], [3148, 3641]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84829, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3458, 4160], [3388, 4040], [3394, 4042], [3294, 3900], [3163, 3738], [3155, 3743], [3085, 3663], [2988, 3529], [2975, 3486], [2885, 3402], [2836, 3313], [2709, 3212], [2711, 3226], [2647, 3316], [2750, 3399], [2742, 3417], [2742, 3438], [3027, 3692], [3056, 3695], [3122, 3771], [3116, 3777], [3329, 4061], [3388, 4160], [3458, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76912, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3132, 3434], [3183, 3337], [3161, 3323], [3115, 3412], [3132, 3434]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80919, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3148, 3505], [3163, 3473], [3141, 3445], [3114, 3484], [3148, 3505]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75884, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3115, 3412], [3161, 3323], [3122, 3299], [3080, 3368], [3115, 3412]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80225, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3028, 3370], [3080, 3368], [3122, 3299], [3079, 3272], [3028, 3370]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78419, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3055, 3572], [3141, 3445], [3118, 3416], [3011, 3510], [3055, 3572]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83321, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3011, 3506], [3118, 3416], [3099, 3392], [3003, 3455], [3011, 3506]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83286, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3003, 3455], [3099, 3392], [3080, 3368], [3028, 3370], [2999, 3370], [3003, 3455]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83261, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3039, 3349], [3079, 3272], [3035, 3245], [3015, 3343], [3039, 3349]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78363, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3028, 3370], [3039, 3349], [3015, 3343], [2998, 3339], [2999, 3370], [3028, 3370]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83225, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3015, 3343], [3035, 3245], [2994, 3219], [2998, 3339], [3015, 3343]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78306, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2975, 3486], [2969, 3368], [2867, 3372], [2885, 3402], [2975, 3486]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84065, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2867, 3372], [2969, 3368], [2967, 3330], [2870, 3334], [2859, 3357], [2867, 3372]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84095, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2870, 3334], [2967, 3330], [2965, 3279], [2894, 3282], [2870, 3334]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79226, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2859, 3356], [2870, 3334], [2894, 3282], [2939, 3183], [2859, 3356]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170578, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2859, 3357], [2939, 3183], [2909, 3161], [2837, 3316], [2859, 3357]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79269, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2837, 3316], [2909, 3161], [2877, 3138], [2806, 3289], [2837, 3316]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79315, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3248, 4160], [3277, 4100], [3255, 4081], [2961, 3945], [2853, 3928], [2861, 3905], [2779, 3932], [2648, 3949], [2550, 4160], [3248, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81259, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2447, 3868], [2440, 3882], [2420, 3894], [2328, 3903], [2229, 3912], [2155, 3997], [2648, 3949], [2779, 3932], [2861, 3905], [2939, 3859], [2963, 3857], [3179, 3955], [3276, 4098], [3255, 4081], [3277, 4100], [3319, 4160], [3388, 4160], [3329, 4061], [3116, 3777], [3122, 3771], [3056, 3695], [3027, 3692], [2742, 3438], [2742, 3417], [2750, 3399], [2710, 3367], [2640, 3447], [2678, 3473], [2724, 3492], [2970, 3711], [2972, 3727], [2944, 3737], [2547, 3553], [2478, 3630], [2542, 3660], [2655, 3713], [2773, 3767], [2849, 3803], [2850, 3827], [2730, 3864], [2579, 3879], [2591, 3854], [2447, 3868]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170250, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2944, 3737], [2972, 3727], [2970, 3711], [2724, 3492], [2678, 3473], [2588, 3411], [2455, 3428], [2319, 3447], [2944, 3737]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76955, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2579, 3879], [2730, 3864], [2773, 3767], [2655, 3713], [2623, 3786], [2579, 3879]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82665, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2730, 3864], [2850, 3827], [2849, 3803], [2773, 3767], [2730, 3864]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82635, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2806, 3289], [2847, 3201], [2732, 3148], [2791, 3180], [2756, 3250], [2806, 3289]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77566, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2640, 3447], [2710, 3367], [2647, 3317], [2600, 3385], [2578, 3369], [2563, 3389], [2588, 3411], [2640, 3447]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171589, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2447, 3868], [2592, 3854], [2623, 3786], [2508, 3734], [2447, 3868]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81717, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2623, 3786], [2655, 3713], [2542, 3660], [2508, 3734], [2623, 3786]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82613, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2332, 3705], [2377, 3612], [2304, 3578], [2261, 3664], [2332, 3705]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81891, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2229, 3912], [2328, 3903], [2461, 3622], [2389, 3589], [2377, 3612], [2229, 3912]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77422, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2377, 3612], [2389, 3589], [2316, 3556], [2304, 3578], [2377, 3612]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82537, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2328, 3903], [2420, 3894], [2440, 3882], [2542, 3660], [2461, 3622], [2328, 3903]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81765, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2572, 3366], [2523, 3331], [2301, 3204], [2572, 3366]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171593, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2319, 3447], [2588, 3411], [2563, 3389], [2578, 3369], [2301, 3204], [2259, 3307], [2360, 3354], [2319, 3447]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67773, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2319, 3447], [2360, 3354], [2259, 3307], [2301, 3204], [2252, 3174], [2168, 3377], [2319, 3447]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73119, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2168, 3377], [2252, 3174], [2173, 3129], [2085, 3340], [2168, 3377]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72977, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2085, 3340], [2173, 3129], [2121, 3099], [2031, 3315], [2085, 3340]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72926, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2079, 3927], [2132, 3921], [2179, 3828], [2139, 3800], [2079, 3927]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76298, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2178, 3827], [2316, 3556], [2106, 3459], [1997, 3693], [2178, 3827]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82161, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2261, 3664], [2180, 3822], [2182, 3823], [2261, 3664]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171584, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2132, 3921], [2229, 3912], [2334, 3700], [2261, 3664], [2132, 3921]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81808, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3542, 3261], [3539, 3161], [3504, 3163], [3507, 3249], [3511, 3250], [3542, 3261]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115967, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3504, 3163], [3539, 3161], [3536, 3070], [3501, 3071], [3504, 3163]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115966, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3507, 3249], [3501, 3071], [3465, 3072], [3470, 3235], [3485, 3241], [3507, 3249]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115968, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3485, 3241], [3470, 3235], [3465, 3234], [3485, 3241]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170297, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3470, 3235], [3465, 3072], [3425, 3073], [3428, 3220], [3465, 3234], [3470, 3235]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115969, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3398, 3210], [3386, 3205], [3367, 3199], [3398, 3210]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170285, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3428, 3220], [3425, 3073], [3385, 3074], [3386, 3205], [3421, 3218], [3428, 3220]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115970, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3386, 3205], [3385, 3074], [3358, 3075], [3361, 3196], [3367, 3199], [3386, 3205]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115982, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3367, 3199], [3361, 3196], [3337, 3188], [3367, 3199]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170581, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3361, 3196], [3358, 3075], [3333, 3075], [3337, 3188], [3361, 3196]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115399, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3217, 3267], [3280, 3168], [3337, 3188], [3333, 3075], [3200, 3079], [3195, 3159], [3153, 3228], [3217, 3267]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115371, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3153, 3228], [3195, 3159], [3200, 3079], [3160, 3073], [3148, 3140], [3111, 3202], [3153, 3228]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115401, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3111, 3202], [3148, 3140], [3160, 3073], [3124, 3068], [3094, 3139], [3071, 3178], [3111, 3202]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115372, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3071, 3178], [3094, 3139], [3067, 3129], [3046, 3163], [3071, 3178]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115402, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3015, 3144], [3034, 3116], [3094, 3139], [3124, 3068], [3065, 3033], [2992, 3129], [3015, 3144]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115374, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3028, 3082], [3065, 3033], [3047, 3020], [3011, 3069], [3028, 3082]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115375, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3046, 3163], [3067, 3129], [3034, 3116], [3015, 3144], [3046, 3163]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115373, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3011, 3069], [3047, 3020], [3030, 3008], [2994, 3055], [3011, 3069]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115376, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2992, 3129], [3028, 3082], [2994, 3055], [2957, 3103], [2992, 3129]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115377, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2957, 3103], [2994, 3055], [2937, 3012], [2902, 3059], [2957, 3103]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115390, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2894, 3282], [2965, 3279], [2961, 3199], [2939, 3183], [2894, 3282]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79179, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2838, 3223], [2877, 3138], [2847, 3201], [2838, 3223]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171590, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2847, 3201], [2877, 3138], [2838, 3105], [2804, 3181], [2847, 3201]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80013, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2804, 3181], [2838, 3105], [2805, 3076], [2766, 3163], [2804, 3181]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80051, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2766, 3163], [2805, 3076], [2778, 3050], [2732, 3148], [2766, 3163]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80093, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2756, 3250], [2791, 3180], [2730, 3152], [2705, 3209], [2756, 3250]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77667, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2530, 1544], [2542, 1490], [2580, 1443], [2699, 1397], [2675, 1388], [2589, 1401], [2532, 1428], [2525, 1440], [2526, 1461], [2512, 1465], [2487, 1514], [2530, 1544]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116098, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2712, 1989], [2759, 1969], [2670, 1706], [2586, 1734], [2580, 1716], [2539, 1667], [2521, 1607], [2464, 1623], [2482, 1678], [2575, 1764], [2633, 1850], [2656, 1902], [2673, 1986], [2712, 1989]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116033, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2443, 1406], [2664, 1388], [2739, 1365], [2823, 1322], [2797, 1291], [2696, 1340], [2486, 1380], [2450, 1393], [2443, 1406]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116032, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2466, 1364], [2623, 1353], [2696, 1340], [2567, 1185], [2466, 1364]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116019, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2546, 828], [2623, 747], [2573, 698], [2502, 776], [2546, 828]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116690, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2496, 604], [2510, 584], [2432, 531], [2421, 552], [2496, 604]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33879, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2500, 778], [2538, 736], [2482, 698], [2458, 734], [2500, 778]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 31809, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2443, 1406], [2477, 1405], [2585, 1394], [2443, 1406]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221333, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2456, 1625], [2521, 1607], [2532, 1567], [2530, 1544], [2487, 1514], [2512, 1465], [2526, 1461], [2525, 1440], [2532, 1428], [2589, 1401], [2670, 1386], [2477, 1405], [2431, 1426], [2411, 1462], [2363, 1487], [2349, 1515], [2350, 1556], [2359, 1582], [2380, 1606], [2408, 1622], [2456, 1625]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116030, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2564, 1752], [2482, 1678], [2498, 1725], [2517, 1719], [2564, 1752]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116138, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2533, 1571], [2531, 1540], [2530, 1544], [2532, 1567], [2533, 1571]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221129, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2450, 1393], [2623, 1353], [2466, 1364], [2450, 1393]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116090, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2542, 1666], [2561, 1659], [2532, 1567], [2521, 1599], [2524, 1629], [2542, 1666]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116112, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2550, 2267], [2560, 2221], [2579, 2188], [2538, 2146], [2503, 2174], [2509, 2181], [2543, 2218], [2550, 2267]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116147, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2539, 2237], [2546, 2228], [2534, 2203], [2509, 2181], [2539, 2237]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116146, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2593, 2825], [2726, 2581], [2438, 2485], [2342, 2721], [2482, 2773], [2593, 2825]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116039, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2678, 3181], [2710, 3167], [2767, 3042], [2681, 2970], [2566, 2899], [2257, 2766], [2198, 2896], [2196, 2903], [2216, 2917], [2391, 3029], [2518, 3054], [2678, 3181]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65918, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2342, 2721], [2438, 2485], [2726, 2581], [2733, 2567], [2680, 2534], [2642, 2498], [2597, 2431], [2558, 2338], [2550, 2272], [2539, 2237], [2220, 2626], [2256, 2665], [2342, 2721]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116006, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2694, 3249], [2711, 3226], [2709, 3212], [2705, 3209], [2730, 3152], [2791, 3180], [2732, 3148], [2778, 3050], [2805, 3076], [2838, 3105], [2877, 3138], [2898, 3154], [2949, 3096], [2902, 3059], [2833, 2997], [2798, 2965], [2760, 2935], [2731, 2913], [2731, 2887], [2772, 2870], [2812, 2866], [2862, 2881], [2900, 2909], [2974, 2964], [3028, 3006], [3068, 2961], [3028, 2930], [2994, 2904], [2965, 2881], [2957, 2874], [2889, 2825], [2832, 2807], [2766, 2809], [2697, 2836], [2663, 2866], [2593, 2825], [2565, 2812], [2547, 2842], [2407, 2784], [2317, 2744], [2269, 2717], [2167, 2636], [1774, 2298], [1792, 2317], [1983, 2524], [2186, 2749], [2249, 2785], [2257, 2766], [2566, 2899], [2681, 2970], [2767, 3042], [2710, 3167], [2678, 3181], [2518, 3054], [2664, 3173], [2639, 3208], [2694, 3249]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171454, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2579, 2188], [2640, 2102], [2646, 2042], [2666, 2035], [2671, 1986], [2633, 1850], [2564, 1752], [2517, 1719], [2498, 1725], [2482, 1678], [2466, 1666], [2347, 1705], [2334, 1691], [2305, 1598], [2200, 1634], [2171, 1702], [2148, 1785], [2149, 1826], [2159, 1863], [2184, 1904], [2220, 1940], [2205, 1959], [2241, 2001], [2371, 2118], [2509, 2181], [2503, 2174], [2538, 2146], [2579, 2188]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116004, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2326, 1506], [2363, 1487], [2399, 1446], [2431, 1426], [2443, 1406], [2412, 1411], [2372, 1438], [2339, 1474], [2326, 1506]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116093, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2377, 1379], [2401, 1400], [2412, 1400], [2377, 1379]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221324, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2363, 1487], [2411, 1462], [2431, 1426], [2399, 1446], [2363, 1487]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116089, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2347, 1705], [2466, 1666], [2482, 1678], [2464, 1623], [2408, 1622], [2380, 1606], [2359, 1582], [2341, 1593], [2337, 1587], [2305, 1598], [2334, 1691], [2347, 1705]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116092, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2418, 1388], [2425, 1387], [2389, 1376], [2418, 1388]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221342, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2417, 1404], [2450, 1393], [2455, 1384], [2418, 1388], [2389, 1376], [2377, 1379], [2417, 1404]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116091, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2428, 1388], [2455, 1384], [2466, 1364], [2389, 1376], [2428, 1388]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116088, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2412, 1411], [2443, 1406], [2450, 1393], [2412, 1411]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116099, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2430, 1402], [2450, 1393], [2424, 1401], [2430, 1402]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221330, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2431, 1426], [2477, 1405], [2443, 1406], [2431, 1426]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116100, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2574, 1024], [2430, 849], [2331, 881], [2574, 1024]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116018, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2389, 1376], [2466, 1364], [2567, 1185], [2532, 1143], [2615, 1073], [2574, 1024], [2331, 881], [2249, 967], [2269, 1034], [2284, 1053], [2310, 1064], [2353, 1054], [2373, 1064], [2364, 1082], [2317, 1108], [2307, 1148], [2338, 1243], [2373, 1260], [2355, 1296], [2375, 1357], [2389, 1376]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116008, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2428, 705], [2433, 698], [2405, 666], [2398, 677], [2428, 705]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34509, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2405, 666], [2460, 579], [2421, 552], [2378, 634], [2405, 666]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 35581, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2433, 698], [2496, 604], [2460, 579], [2405, 666], [2433, 698]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34964, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2398, 677], [2405, 666], [2378, 634], [2370, 649], [2398, 677]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 30316, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2370, 649], [2443, 510], [2395, 488], [2370, 539], [2331, 620], [2370, 649]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 35486, 'type': 'Feature'}, {'geometry': {'type': 'MultiPolygon', 'coordinates': [[[[2017, 1169], [2022, 1172], [2113, 989], [2207, 806], [2279, 673], [2339, 743], [2393, 805], [2430, 849], [2574, 1024], [2615, 1073], [2624, 1083], [2797, 1291], [2823, 1322], [2845, 1349], [2886, 1335], [2968, 1433], [3036, 1500], [2505, 865], [2460, 812], [2360, 684], [2331, 656], [2298, 632], [2274, 651], [2281, 654], [2222, 764], [2188, 829], [2152, 899], [2151, 898], [2108, 983], [2097, 1006], [2067, 1067], [2017, 1169]]], [[[1968, 1142], [2048, 1057], [1966, 1141], [1968, 1142]]], [[[1966, 1141], [1913, 1111], [1866, 1085], [1966, 1141]]], [[[1839, 1070], [1809, 1053], [1809, 1054], [1839, 1070]]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221204, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2331, 881], [2430, 849], [2393, 805], [2327, 879], [2331, 881]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116045, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2377, 1379], [2389, 1376], [2375, 1357], [2355, 1296], [2373, 1260], [2338, 1243], [2312, 1164], [2307, 1165], [2377, 1379]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116049, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2327, 879], [2393, 805], [2339, 743], [2255, 835], [2327, 879]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116041, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2331, 620], [2344, 593], [2282, 549], [2267, 585], [2331, 620]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 31024, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2307, 1148], [2317, 1108], [2364, 1082], [2373, 1064], [2353, 1054], [2299, 1061], [2269, 1034], [2307, 1148]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116063, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2346, 1393], [2377, 1379], [2307, 1165], [2312, 1164], [2307, 1148], [2294, 1110], [2238, 1130], [2262, 1139], [2281, 1165], [2309, 1251], [2291, 1287], [2326, 1305], [2346, 1366], [2346, 1393]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116065, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2295, 1057], [2299, 1061], [2303, 1061], [2295, 1057]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221217, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2309, 1251], [2281, 1165], [2279, 1163], [2309, 1251]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221230, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2249, 967], [2331, 881], [2327, 879], [2322, 884], [2249, 967]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221219, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2249, 967], [2322, 884], [2244, 910], [2255, 942], [2247, 958], [2249, 967]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116046, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2269, 1465], [2297, 1429], [2291, 1434], [2269, 1465]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221313, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2371, 2118], [2257, 2016], [2282, 2042], [2371, 2118]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221252, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2311, 1551], [2318, 1544], [2319, 1540], [2311, 1551]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221148, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2328, 1501], [2334, 1486], [2330, 1493], [2328, 1501]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221299, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2305, 1598], [2337, 1587], [2341, 1593], [2359, 1582], [2348, 1535], [2352, 1506], [2363, 1487], [2326, 1506], [2318, 1544], [2295, 1568], [2305, 1598]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116095, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2346, 1378], [2346, 1366], [2326, 1305], [2346, 1378]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221241, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2350, 1544], [2349, 1524], [2348, 1535], [2350, 1544]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221127, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2330, 1493], [2356, 1452], [2430, 1402], [2401, 1400], [2377, 1379], [2346, 1393], [2303, 1422], [2269, 1465], [2330, 1493]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116097, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2351, 1511], [2363, 1487], [2352, 1506], [2351, 1511]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221301, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2349, 1463], [2364, 1447], [2356, 1452], [2349, 1463]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221306, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2220, 2626], [2539, 2237], [2509, 2181], [2371, 2118], [2282, 2042], [2215, 1971], [1894, 2273], [2220, 2626]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116005, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2200, 1634], [2305, 1598], [2295, 1568], [2282, 1572], [2219, 1594], [2200, 1634]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116094, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2219, 1594], [2282, 1572], [2295, 1568], [2299, 1564], [2219, 1594]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221146, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2219, 1594], [2304, 1562], [2320, 1538], [2330, 1493], [2269, 1465], [2241, 1497], [2255, 1543], [2246, 1546], [2219, 1594]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116096, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2269, 1034], [2263, 1013], [2260, 1008], [2269, 1034]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221228, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2255, 835], [2339, 743], [2279, 673], [2207, 806], [2255, 835]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116042, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2200, 925], [2322, 884], [2327, 879], [2255, 835], [2192, 903], [2200, 925]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116047, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2266, 1120], [2294, 1110], [2260, 1008], [2241, 998], [2231, 1017], [2266, 1120]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116064, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2238, 1073], [2240, 1070], [2240, 1064], [2238, 1073]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221215, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2231, 1017], [2239, 1046], [2239, 1041], [2231, 1017]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221227, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2271, 1031], [2249, 967], [2224, 995], [2231, 1017], [2241, 998], [2260, 1008], [2271, 1031]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116062, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2267, 585], [2282, 548], [2263, 537], [2248, 575], [2267, 585]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 31508, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2222, 764], [2281, 654], [2223, 630], [2170, 738], [2222, 764]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 589, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2224, 995], [2249, 967], [2247, 958], [2255, 942], [2244, 910], [2200, 925], [2224, 995]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116050, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2121, 1165], [2238, 1130], [2266, 1120], [2121, 1165]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221206, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2161, 937], [2200, 925], [2192, 903], [2161, 937]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116048, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2113, 989], [2255, 835], [2207, 806], [2113, 989]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116040, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2188, 829], [2222, 764], [2170, 738], [2137, 804], [2188, 829]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7813, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2269, 1465], [2291, 1434], [2346, 1393], [2348, 1384], [2326, 1305], [2291, 1287], [2309, 1251], [2278, 1159], [2262, 1139], [2238, 1130], [2121, 1165], [1963, 1330], [2269, 1465]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116010, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2152, 899], [2188, 829], [2137, 804], [2103, 876], [2152, 899]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7548, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2151, 776], [2223, 630], [2185, 615], [2117, 761], [2151, 776]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 738, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2117, 761], [2185, 615], [2139, 597], [2073, 741], [2117, 761]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 560, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2017, 1228], [2105, 1140], [2226, 1093], [2237, 1076], [2241, 1054], [2224, 995], [2017, 1228]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116043, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2108, 983], [2151, 898], [2103, 876], [2061, 961], [2108, 983]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7125, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2066, 1647], [2219, 1594], [2246, 1546], [2255, 1543], [2241, 1497], [2269, 1465], [1963, 1330], [1938, 1362], [1938, 1400], [2011, 1619], [2035, 1643], [2066, 1647]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116012, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2109, 1989], [2136, 1963], [2117, 1942], [2050, 1735], [2049, 1714], [2059, 1691], [2077, 1677], [2200, 1634], [2219, 1594], [1990, 1674], [2081, 1939], [2078, 1956], [2109, 1989]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116009, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2136, 1963], [2112, 1927], [2117, 1942], [2136, 1963]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221268, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2136, 1963], [2149, 1939], [2112, 1927], [2136, 1963]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116137, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2137, 1961], [2143, 1955], [2149, 1939], [2137, 1961]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221266, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2144, 2038], [2215, 1971], [2205, 1959], [2220, 1940], [2167, 1879], [2147, 1816], [2148, 1785], [2163, 1727], [2200, 1634], [2077, 1677], [2059, 1691], [2049, 1714], [2050, 1735], [2112, 1927], [2149, 1939], [2143, 1955], [2104, 1995], [2144, 2038]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116014, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2149, 1820], [2148, 1785], [2147, 1816], [2149, 1820]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221174, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2148, 1785], [2168, 1716], [2163, 1727], [2148, 1785]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221172, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2174, 1887], [2165, 1872], [2167, 1879], [2174, 1887]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221189, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2196, 309], [2219, 237], [2165, 221], [2159, 212], [2093, 203], [2085, 274], [2196, 309]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 32673, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2182, 353], [2196, 309], [2085, 274], [2079, 321], [2182, 353]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33408, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2638, 397], [2683, 331], [2552, 244], [2546, 257], [2511, 245], [2508, 253], [2488, 294], [2638, 397]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 29596, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2116, 397], [2134, 338], [2079, 321], [2073, 384], [2116, 397]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34407, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2608, 441], [2638, 397], [2539, 328], [2512, 378], [2608, 441]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33720, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2590, 467], [2608, 441], [2512, 378], [2499, 403], [2590, 467]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33863, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2572, 493], [2590, 467], [2499, 403], [2485, 429], [2572, 493]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34293, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2549, 527], [2572, 493], [2485, 429], [2464, 470], [2549, 527]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34458, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2163, 538], [2195, 435], [2112, 409], [2081, 508], [2163, 538]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34802, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2523, 564], [2549, 527], [2464, 470], [2443, 510], [2523, 564]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34330, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2510, 584], [2523, 564], [2443, 510], [2432, 531], [2510, 584]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34258, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3058, 2671], [3037, 2653], [3043, 2661], [3058, 2671]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171579, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3038, 2791], [3051, 2758], [3006, 2749], [2995, 2775], [3038, 2791]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116630, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3027, 2819], [3038, 2791], [2999, 2777], [2988, 2807], [2993, 2808], [3027, 2819]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116602, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2994, 3055], [3030, 3008], [2974, 2964], [2937, 3012], [2994, 3055]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115378, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3011, 2860], [3027, 2819], [2993, 2808], [2978, 2847], [3011, 2860]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116597, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2998, 2769], [3006, 2749], [3030, 2685], [2998, 2769]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171577, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2994, 2904], [3011, 2860], [2978, 2847], [2965, 2881], [2994, 2904]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116604, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2965, 2881], [2993, 2808], [2988, 2807], [2999, 2777], [2995, 2775], [2957, 2874], [2965, 2881]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116632, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2974, 2538], [2971, 2481], [2970, 2486], [2974, 2538]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171526, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2967, 2549], [2942, 2552], [2965, 2552], [2967, 2549]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171519, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3002, 683], [3025, 660], [2943, 579], [2938, 585], [2930, 578], [2914, 595], [3002, 683]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116713, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3025, 660], [3049, 637], [2967, 556], [2943, 579], [3025, 660]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116714, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2960, 725], [3002, 683], [2914, 595], [2872, 636], [2960, 725]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116712, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2928, 580], [2930, 578], [2848, 512], [2928, 580]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171508, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2910, 775], [2932, 753], [2843, 665], [2821, 687], [2910, 775]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116710, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2886, 622], [2928, 580], [2848, 512], [2811, 551], [2886, 622]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116692, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2932, 753], [2960, 725], [2872, 636], [2843, 665], [2932, 753]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116711, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2866, 642], [2886, 622], [2826, 565], [2798, 579], [2866, 642]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116691, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2887, 797], [2910, 775], [2821, 687], [2799, 709], [2887, 797]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116709, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2858, 825], [2887, 797], [2799, 709], [2770, 738], [2858, 825]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116680, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3004, 2609], [2989, 2591], [2854, 2595], [2733, 2567], [2791, 2592], [2851, 2606], [3004, 2609]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116323, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2902, 3059], [2974, 2964], [2900, 2909], [2833, 2997], [2902, 3059]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116585, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2833, 2997], [2900, 2909], [2862, 2881], [2798, 2965], [2833, 2997]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116588, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2826, 2550], [2834, 2553], [2850, 2553], [2826, 2550]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171518, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2798, 2965], [2862, 2881], [2812, 2866], [2760, 2935], [2798, 2965]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116589, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2770, 2576], [2736, 2562], [2726, 2563], [2733, 2567], [2770, 2576]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171515, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2768, 2531], [2752, 2525], [2755, 2527], [2768, 2531]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171521, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2760, 2935], [2812, 2866], [2772, 2870], [2731, 2887], [2731, 2913], [2760, 2935]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116581, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2699, 1397], [2845, 1349], [2823, 1322], [2739, 1365], [2670, 1386], [2699, 1397]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116113, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2813, 870], [2858, 825], [2770, 738], [2726, 781], [2813, 870]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116679, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2811, 697], [2866, 642], [2798, 579], [2826, 565], [2811, 551], [2739, 626], [2811, 697]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116678, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2743, 622], [2778, 585], [2724, 535], [2690, 571], [2743, 622]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116686, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2725, 783], [2811, 697], [2739, 626], [2655, 714], [2725, 783]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116677, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2766, 1094], [2828, 1030], [2787, 979], [2723, 1042], [2766, 1094]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116727, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2777, 905], [2813, 870], [2726, 781], [2690, 818], [2777, 905]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116725, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2723, 1042], [2787, 979], [2759, 945], [2695, 1008], [2723, 1042]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116728, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2685, 996], [2777, 905], [2690, 818], [2671, 836], [2678, 844], [2645, 876], [2684, 924], [2650, 953], [2685, 996]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116681, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2708, 659], [2743, 622], [2690, 571], [2655, 609], [2708, 659]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116685, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2666, 703], [2708, 659], [2655, 609], [2614, 654], [2666, 703]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116684, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2695, 812], [2725, 783], [2655, 714], [2626, 745], [2695, 812]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116676, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2696, 1340], [2797, 1291], [2624, 1083], [2567, 1185], [2696, 1340]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116031, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2650, 953], [2684, 924], [2645, 876], [2613, 909], [2650, 953]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116726, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2675, 1388], [2670, 1386], [2664, 1388], [2657, 1389], [2589, 1401], [2675, 1388]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221326, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2613, 1356], [2696, 1340], [2623, 1353], [2613, 1356]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221246, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2616, 2143], [2648, 2096], [2666, 2035], [2646, 2042], [2640, 2102], [2616, 2143]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116142, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2636, 2183], [2662, 2151], [2668, 2140], [2636, 2183]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221273, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2736, 2562], [2755, 2527], [2694, 2487], [2650, 2439], [2615, 2382], [2592, 2309], [2591, 2273], [2604, 2228], [2671, 2136], [2703, 2051], [2712, 1989], [2673, 1986], [2674, 2016], [2648, 2096], [2568, 2206], [2550, 2272], [2582, 2386], [2603, 2439], [2626, 2472], [2684, 2530], [2736, 2562]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116038, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2648, 2096], [2674, 2016], [2674, 2013], [2666, 2035], [2648, 2096]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221260, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2671, 1986], [2659, 1915], [2634, 1852], [2671, 1986]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116140, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2635, 1855], [2657, 1910], [2656, 1902], [2635, 1855]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221187, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2674, 2002], [2673, 1986], [2663, 1936], [2671, 1986], [2674, 2002]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221271, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2666, 2035], [2675, 2010], [2671, 1986], [2666, 2035]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116141, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2673, 2131], [2689, 2099], [2694, 2074], [2673, 2131]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221254, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2710, 2001], [2713, 1988], [2712, 1989], [2710, 2001]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221262, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2724, 2563], [2736, 2562], [2669, 2517], [2614, 2456], [2642, 2498], [2680, 2534], [2724, 2563]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116161, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2677, 2522], [2646, 2491], [2669, 2517], [2677, 2522]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221282, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2663, 2866], [2697, 2836], [2701, 2668], [2683, 2659], [2593, 2825], [2663, 2866]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116582, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2613, 2456], [2605, 2442], [2603, 2439], [2603, 2438], [2594, 2424], [2597, 2431], [2613, 2456]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221284, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2593, 2314], [2591, 2273], [2592, 2309], [2593, 2314]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221288, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2614, 2456], [2582, 2386], [2550, 2272], [2553, 2316], [2562, 2351], [2586, 2411], [2614, 2456]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116160, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2560, 2343], [2558, 2334], [2558, 2338], [2560, 2343]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221290, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2550, 2272], [2566, 2210], [2560, 2221], [2550, 2267], [2548, 2255], [2550, 2272]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221278, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2580, 1716], [2561, 1659], [2539, 1667], [2580, 1716]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116139, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2575, 1449], [2588, 1440], [2580, 1443], [2575, 1449]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221308, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2633, 1850], [2575, 1764], [2566, 1756], [2633, 1850]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221168, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2591, 2273], [2606, 2225], [2604, 2228], [2591, 2273]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221286, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2574, 2198], [2623, 2131], [2640, 2102], [2579, 2188], [2574, 2198]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221276, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2613, 909], [2678, 844], [2671, 836], [2653, 814], [2589, 880], [2613, 909]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116724, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2589, 880], [2653, 814], [2671, 836], [2695, 812], [2626, 745], [2546, 828], [2589, 880]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116682, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2623, 747], [2626, 745], [2575, 700], [2623, 747]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171504, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2626, 745], [2666, 703], [2614, 654], [2573, 698], [2626, 745]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116683, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2567, 1185], [2624, 1083], [2615, 1073], [2568, 1113], [2587, 1136], [2551, 1166], [2567, 1185]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116067, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2551, 1166], [2587, 1136], [2568, 1113], [2532, 1143], [2551, 1166]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116066, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2540, 1495], [2551, 1478], [2542, 1490], [2540, 1495]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221293, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2539, 1667], [2542, 1666], [2533, 1648], [2539, 1667]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221161, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2543, 2223], [2543, 2218], [2539, 2214], [2543, 2223]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221280, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2550, 2272], [2546, 2228], [2539, 2237], [2550, 2272]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116148, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2689, 394], [2747, 308], [2737, 307], [2681, 389], [2689, 394]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116689, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2905, 405], [2957, 331], [2911, 310], [2876, 385], [2905, 405]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116231, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2913, 411], [2966, 335], [2957, 331], [2905, 405], [2913, 411]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116708, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2748, 435], [2813, 341], [2782, 320], [2753, 300], [2689, 394], [2748, 435]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116228, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2961, 444], [3038, 368], [2966, 335], [2913, 411], [2961, 444]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116707, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2961, 444], [2930, 422], [2954, 440], [2961, 444]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171493, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2809, 479], [2864, 403], [2856, 409], [2809, 479]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171456, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2809, 479], [2873, 383], [2843, 362], [2778, 456], [2809, 479]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116720, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2913, 500], [2954, 440], [2909, 408], [2870, 464], [2913, 500]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116705, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2842, 507], [2909, 408], [2876, 385], [2809, 479], [2842, 507]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116719, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2972, 550], [3030, 492], [2961, 444], [2954, 440], [2913, 500], [2972, 550]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116706, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2810, 552], [2848, 512], [2789, 463], [2755, 501], [2810, 552]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116688, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2938, 585], [2972, 550], [2870, 464], [2842, 507], [2938, 585]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116704, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2778, 585], [2810, 552], [2755, 501], [2724, 535], [2778, 585]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116687, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3515, 194], [3611, 24], [3581, 8], [3488, 178], [3515, 194]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116309, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3463, -53], [3469, -64], [3443, -64], [3463, -53]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116166, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3412, 316], [3620, -64], [3469, -64], [3302, 240], [3412, 316]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116163, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3436, 334], [3515, 194], [3488, 178], [3412, 316], [3436, 334]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116300, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3456, 348], [3537, 206], [3515, 194], [3436, 334], [3456, 348]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116302, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3421, 25], [3463, -53], [3443, -64], [3415, -64], [3379, 1], [3421, 25]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116261, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3396, 70], [3421, 25], [3379, 1], [3390, -19], [3330, -51], [3293, 15], [3396, 70]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116259, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3350, 153], [3396, 70], [3293, 15], [3249, 95], [3350, 153]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116257, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3302, 240], [3350, 153], [3310, 130], [3263, 213], [3302, 240]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116262, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3169, 20], [3216, -64], [3177, -64], [3139, 4], [3169, 20]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116169, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3146, 134], [3257, -64], [3216, -64], [3169, 20], [3116, 114], [3146, 134]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116168, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3266, 207], [3310, 130], [3249, 95], [3206, 174], [3236, 195], [3240, 190], [3266, 207]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116253, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3170, 271], [3236, 195], [3206, 174], [3311, -17], [3280, -34], [3177, 155], [3160, 143], [3107, 214], [3170, 271]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116164, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3205, 303], [3279, 224], [3263, 213], [3266, 207], [3240, 190], [3236, 195], [3170, 271], [3205, 303]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116297, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3054, 287], [3160, 143], [3116, 114], [3079, 171], [3085, 173], [3018, 270], [3054, 287]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116242, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2898, 204], [2948, 121], [2885, 93], [2836, 176], [2898, 204]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116248, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2799, 159], [2844, 75], [2839, 72], [2799, 159]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33061, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2828, 271], [2865, 189], [2845, 180], [2808, 262], [2828, 271]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116247, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2859, 286], [2898, 204], [2865, 189], [2828, 271], [2859, 286]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116244, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2782, 321], [2835, 199], [2826, 195], [2786, 251], [2790, 254], [2759, 306], [2782, 321]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 30782, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2794, 169], [2839, 72], [2807, 58], [2762, 154], [2794, 169]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 32619, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2762, 154], [2807, 58], [2839, 72], [2850, 48], [2784, 19], [2730, 139], [2762, 154]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 27561, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2753, 230], [2778, 193], [2770, 169], [2759, 164], [2734, 218], [2753, 230]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 32496, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2702, 268], [2734, 218], [2681, 185], [2650, 232], [2702, 268]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 26872, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2734, 218], [2762, 154], [2700, 126], [2675, 181], [2734, 218]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 27074, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2650, 232], [2681, 185], [2605, 138], [2596, 155], [2581, 185], [2650, 232]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 29132, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2586, -30], [2599, -64], [2510, -64], [2508, -58], [2586, -30]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 20350, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2688, 3], [2611, -21], [2508, -58], [2506, -52], [2688, 3]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 35487, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2577, 38], [2596, -21], [2493, -56], [2474, 3], [2577, 38]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 30241, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2615, 120], [2628, 93], [2644, 61], [2348, -41], [2329, 20], [2615, 120]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 20544, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2503, -60], [2504, -64], [2491, -64], [2503, -60]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 25699, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2596, 155], [2615, 120], [2329, 20], [2318, 57], [2596, 155]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 20665, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2546, 257], [2557, 233], [2293, 140], [2285, 167], [2453, 226], [2450, 233], [2508, 253], [2511, 245], [2546, 257]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 20948, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2474, 3], [2493, -56], [2469, -64], [2355, -64], [2348, -41], [2474, 3]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 30839, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2472, 203], [2480, 179], [2300, 115], [2293, 140], [2472, 203]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 29701, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2367, 139], [2377, 111], [2425, 127], [2436, 98], [2318, 57], [2300, 115], [2367, 139]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 31578, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2312, 55], [2348, -64], [2316, -64], [2283, 45], [2312, 55]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 25215, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2302, -16], [2316, -64], [2248, -64], [2240, -38], [2302, -16]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34817, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2231, 323], [2292, 121], [2200, 87], [2179, 151], [2241, 170], [2219, 237], [2195, 311], [2231, 323]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 36020, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2292, 121], [2312, 55], [2221, 24], [2200, 87], [2292, 121]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34048, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2283, 45], [2302, -16], [2240, -38], [2221, 24], [2283, 45]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34578, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2245, -53], [2248, -64], [2149, -64], [2245, -53]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 35388, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2219, 237], [2241, 170], [2179, 151], [2176, 161], [2159, 212], [2165, 221], [2219, 237]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33016, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2228, -2], [2245, -53], [2149, -64], [2122, -64], [2117, -14], [2228, -2]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34682, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2212, 51], [2228, -2], [2117, -14], [2111, 39], [2212, 51]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34166, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2191, 116], [2212, 51], [2111, 39], [2104, 107], [2191, 116]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 33507, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2176, 161], [2191, 116], [2104, 107], [2099, 151], [2176, 161]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 32821, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2159, 212], [2176, 161], [2099, 151], [2093, 203], [2159, 212]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 31890, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2957, 331], [3009, 255], [2950, 228], [2911, 310], [2957, 331]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116234, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3133, 323], [3170, 271], [3107, 214], [3054, 287], [3133, 323]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116241, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3171, 340], [3205, 303], [3170, 271], [3133, 323], [3171, 340]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116294, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3133, 323], [3177, 346], [3171, 340], [3133, 323]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171474, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3226, 322], [3302, 240], [3279, 224], [3205, 303], [3226, 322]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116298, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2629, 296], [2664, 241], [2634, 221], [2599, 275], [2629, 296]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 28297, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2765, 297], [2790, 254], [2786, 251], [2757, 292], [2765, 297]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 31015, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2708, 259], [2734, 256], [2753, 230], [2734, 218], [2708, 259]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 36680, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2683, 331], [2718, 278], [2664, 241], [2629, 296], [2683, 331]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 27746, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[98, 2416], [131, 2331], [-64, 2241], [-64, 2342], [98, 2416]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63799, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[8, 2274], [43, 2153], [-57, 2120], [-63, 2146], [-64, 2146], [-64, 2241], [8, 2274]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64911, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[57, 3044], [92, 2938], [-28, 2899], [-46, 2958], [-62, 2987], [-64, 2987], [-64, 3005], [57, 3044]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70998, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[-62, 2987], [-48, 2962], [-28, 2899], [-64, 2888], [-64, 2987], [-62, 2987]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71040, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[-64, 3351], [-36, 3327], [31, 3349], [105, 3128], [108, 3061], [-64, 3006], [-64, 3351]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74544, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[-58, 3345], [-64, 3350], [-64, 3351], [-58, 3345]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154372, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[225, 4053], [250, 4014], [253, 3988], [245, 3951], [138, 3497], [152, 3493], [150, 3415], [-58, 3345], [-64, 3350], [-64, 4025], [8, 4051], [225, 4053]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73852, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[267, 3981], [380, 3622], [374, 3599], [308, 3578], [291, 3634], [160, 3594], [250, 3975], [267, 3981]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74445, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[150, 3415], [160, 3226], [201, 2989], [251, 2821], [330, 2634], [25, 2493], [-15, 2627], [48, 2646], [15, 2755], [-64, 2728], [-64, 2888], [92, 2938], [57, 3044], [108, 3061], [105, 3128], [31, 3349], [-36, 3327], [-58, 3345], [150, 3415]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73907, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[-47, 2959], [-46, 2958], [-28, 2899], [-47, 2959]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154368, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1221, 4160], [1273, 4160], [1280, 4128], [1337, 4077], [1476, 4063], [1520, 4058], [1564, 4054], [2155, 3997], [2229, 3912], [2132, 3921], [2079, 3927], [1816, 3953], [1482, 3985], [1428, 3889], [1630, 3621], [1717, 3505], [1748, 3465], [1765, 3442], [1720, 3400], [1540, 3640], [1267, 4000], [1255, 4008], [924, 4040], [476, 4084], [471, 4059], [392, 4066], [440, 3911], [428, 3853], [407, 3755], [476, 3536], [513, 3532], [577, 3526], [770, 3508], [823, 3502], [1007, 3485], [999, 3401], [913, 3409], [862, 3414], [764, 3424], [503, 3449], [566, 3248], [611, 3106], [660, 2950], [699, 2840], [738, 2823], [876, 2888], [1037, 2963], [1060, 2973], [1197, 3038], [1198, 3037], [1299, 3084], [1454, 3156], [1210, 2933], [1141, 2900], [971, 2822], [887, 2782], [838, 2760], [897, 2646], [886, 2636], [826, 2753], [764, 2724], [728, 2708], [688, 2689], [645, 2669], [582, 2640], [531, 2617], [438, 2574], [298, 2509], [216, 2471], [98, 2416], [-64, 2342], [-64, 2452], [25, 2493], [330, 2634], [513, 2719], [614, 2765], [634, 2811], [557, 3058], [482, 3296], [480, 3302], [386, 3603], [380, 3622], [267, 3981], [250, 3975], [253, 3988], [250, 4014], [225, 4053], [8, 4051], [-64, 4025], [-64, 4160], [477, 4160], [488, 4159], [560, 4152], [645, 4144], [728, 4136], [803, 4129], [915, 4118], [940, 4115], [966, 4113], [1008, 4109], [1052, 4104], [1097, 4100], [1125, 4097], [1222, 4088], [1234, 4100], [1221, 4160]], [[699, 2840], [683, 2877], [693, 2843], [699, 2840]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154406, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[108, 3061], [57, 3044], [-64, 3005], [-64, 3006], [108, 3061]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154367, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[15, 2755], [48, 2646], [-15, 2627], [25, 2493], [-64, 2452], [-64, 2728], [15, 2755]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71086, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[932, 2560], [1043, 2348], [1053, 2316], [812, 2239], [677, 2212], [666, 2262], [330, 2161], [322, 2189], [346, 2190], [346, 2200], [186, 2149], [193, 2131], [134, 2117], [82, 2059], [-32, 2015], [-39, 2043], [-64, 2034], [-64, 2146], [-63, 2146], [-57, 2120], [279, 2224], [313, 2246], [649, 2347], [645, 2364], [707, 2382], [683, 2496], [856, 2540], [868, 2512], [934, 2542], [925, 2558], [932, 2560]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63043, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[150, 3415], [163, 3206], [160, 3226], [150, 3415]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154374, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[316, 2407], [346, 2256], [279, 2224], [43, 2153], [8, 2274], [131, 2331], [145, 2296], [281, 2334], [258, 2381], [316, 2407]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64444, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[216, 2471], [281, 2334], [145, 2296], [131, 2331], [98, 2416], [216, 2471]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68954, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[201, 2989], [256, 2811], [251, 2821], [201, 2989]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154369, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[291, 3634], [308, 3578], [374, 3599], [351, 3445], [347, 3336], [351, 3255], [164, 3198], [150, 3415], [152, 3493], [138, 3497], [160, 3594], [291, 3634]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70456, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[298, 2509], [316, 2407], [258, 2381], [216, 2471], [298, 2509]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69125, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[480, 3302], [441, 3283], [351, 3255], [480, 3302]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154373, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[386, 3603], [480, 3302], [351, 3255], [347, 3336], [354, 3485], [374, 3599], [386, 3603]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71923, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[438, 2574], [495, 2301], [346, 2256], [298, 2509], [438, 2574]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63836, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[386, 2863], [452, 2840], [513, 2719], [330, 2634], [258, 2804], [386, 2863]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72606, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[353, 3460], [347, 3336], [351, 3445], [353, 3460]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154384, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[351, 3255], [370, 3106], [392, 3020], [440, 2881], [513, 2719], [452, 2840], [386, 2863], [258, 2804], [201, 2989], [164, 3198], [351, 3255]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71171, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[298, 2509], [346, 2256], [316, 2407], [298, 2509]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154444, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[380, 3622], [386, 3603], [374, 3599], [380, 3622]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75280, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[428, 3853], [607, 3836], [581, 3563], [513, 3532], [476, 3536], [407, 3755], [428, 3853]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70966, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[471, 4059], [678, 4039], [653, 3785], [603, 3790], [607, 3836], [428, 3853], [471, 4059]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71427, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[581, 3563], [577, 3526], [513, 3532], [581, 3563]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75134, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[503, 3449], [764, 3424], [748, 3267], [659, 3277], [566, 3248], [503, 3449]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74511, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[666, 2262], [677, 2212], [708, 2219], [860, 1699], [803, 1723], [578, 1624], [526, 1589], [398, 2094], [372, 2125], [363, 2171], [666, 2262]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63729, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[582, 2640], [601, 2577], [649, 2347], [587, 2328], [531, 2617], [582, 2640]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63641, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[531, 2617], [587, 2328], [495, 2301], [438, 2574], [531, 2617]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63584, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[441, 3283], [404, 3265], [510, 3037], [557, 3058], [634, 2811], [614, 2765], [513, 2719], [440, 2881], [392, 3020], [370, 3106], [351, 3255], [441, 3283]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71982, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[482, 3296], [557, 3058], [510, 3037], [404, 3265], [441, 3283], [482, 3296]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73148, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[480, 3302], [482, 3296], [441, 3283], [480, 3302]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75186, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[764, 2724], [832, 2534], [782, 2521], [728, 2708], [764, 2724]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64130, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[821, 3008], [876, 2888], [738, 2823], [699, 2840], [660, 2950], [821, 3008]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73237, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[728, 2708], [736, 2683], [778, 2537], [728, 2708]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154442, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[736, 2683], [782, 2521], [730, 2508], [694, 2664], [736, 2683]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64209, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[816, 3169], [854, 3086], [804, 3063], [821, 3008], [660, 2950], [611, 3106], [816, 3169]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71864, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[713, 3271], [748, 3267], [762, 3224], [731, 3214], [713, 3271]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74051, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[683, 2877], [699, 2840], [693, 2843], [683, 2877]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74106, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[688, 2689], [730, 2508], [683, 2496], [645, 2669], [688, 2689]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64296, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[728, 2708], [736, 2683], [694, 2664], [688, 2689], [728, 2708]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65381, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[645, 2669], [707, 2382], [645, 2364], [601, 2577], [582, 2640], [645, 2669]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63504, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[659, 3277], [713, 3271], [731, 3214], [762, 3224], [782, 3158], [611, 3106], [566, 3248], [659, 3277]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73995, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[760, 3644], [779, 3602], [770, 3508], [577, 3526], [581, 3563], [760, 3644]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74778, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[603, 3790], [775, 3773], [795, 3771], [779, 3602], [760, 3644], [581, 3563], [603, 3790]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75233, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[678, 4039], [799, 4028], [775, 3773], [653, 3785], [678, 4039]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75331, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[779, 3602], [823, 3502], [770, 3508], [779, 3602]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76027, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[799, 4028], [922, 4016], [919, 3989], [994, 3792], [779, 3813], [799, 4028]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75935, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[779, 3813], [994, 3792], [1153, 3371], [1024, 3383], [1011, 3400], [999, 3401], [1007, 3485], [823, 3502], [779, 3602], [795, 3771], [775, 3773], [779, 3813]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72718, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[946, 3228], [1060, 2973], [1037, 2963], [921, 3216], [946, 3228]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73415, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[969, 2655], [970, 2656], [947, 2691], [948, 2692], [1021, 2583], [969, 2655]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171580, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[969, 2655], [1021, 2583], [940, 2562], [908, 2624], [969, 2655]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72281, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[971, 2822], [1113, 2606], [1021, 2583], [887, 2782], [971, 2822]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67123, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1066, 2248], [1084, 2184], [928, 2138], [907, 2202], [1066, 2248]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64832, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1046, 2313], [1066, 2248], [907, 2202], [887, 2263], [1046, 2313]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64910, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[887, 2263], [1033, 1820], [998, 1808], [1012, 1764], [973, 1747], [806, 2238], [887, 2263]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64644, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[897, 2645], [908, 2624], [940, 2562], [932, 2560], [925, 2558], [886, 2636], [897, 2645]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171517, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[887, 2782], [948, 2692], [947, 2691], [887, 2782]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154371, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[904, 3320], [946, 3228], [921, 3216], [899, 3265], [904, 3320]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 74239, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[899, 3265], [1037, 2963], [876, 2888], [821, 3008], [804, 3063], [930, 3120], [892, 3203], [899, 3265]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73510, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[862, 3414], [913, 3409], [904, 3320], [862, 3414]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76086, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[887, 2782], [970, 2656], [908, 2624], [838, 2760], [887, 2782]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72222, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[925, 2558], [934, 2542], [868, 2512], [856, 2540], [925, 2558]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65554, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[895, 2618], [925, 2558], [856, 2540], [836, 2588], [895, 2618]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65457, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[764, 3424], [862, 3414], [904, 3320], [892, 3203], [930, 3120], [854, 3086], [816, 3169], [782, 3158], [748, 3267], [764, 3424]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72660, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[826, 2753], [895, 2618], [836, 2588], [856, 2540], [832, 2534], [764, 2724], [826, 2753]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64068, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[806, 2238], [949, 1819], [897, 1783], [760, 2229], [806, 2238]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64572, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[913, 3409], [1011, 3400], [1024, 3383], [1153, 3371], [1164, 3341], [1093, 3337], [1105, 3301], [946, 3228], [904, 3320], [913, 3409]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71657, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1105, 3301], [1197, 3038], [1060, 2973], [946, 3228], [1105, 3301]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73566, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1052, 2340], [1057, 2325], [1059, 2320], [1061, 2313], [1101, 2178], [1115, 2135], [1128, 2092], [1131, 2086], [1133, 2080], [1149, 2023], [1164, 1974], [1152, 1964], [1138, 2013], [1125, 2053], [1104, 2118], [1084, 2184], [1066, 2248], [1046, 2313], [922, 2274], [1053, 2316], [1046, 2338], [1052, 2340]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171619, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1134, 2341], [1206, 2334], [1136, 2336], [1061, 2313], [1134, 2341]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171512, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1136, 2336], [1178, 2203], [1101, 2178], [1061, 2313], [1136, 2336]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67979, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1134, 2341], [1061, 2313], [1059, 2320], [1134, 2341]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67252, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1133, 2347], [1134, 2341], [1059, 2320], [1057, 2325], [1133, 2347]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67428, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1141, 2900], [1264, 2648], [1113, 2606], [971, 2822], [1141, 2900]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66710, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1113, 2606], [1263, 2648], [1209, 2630], [1113, 2606]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171514, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1136, 2336], [1206, 2334], [1224, 2296], [1156, 2274], [1136, 2336]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71496, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1256, 2402], [1267, 2385], [1057, 2325], [1052, 2340], [1256, 2402]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67351, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1302, 2359], [1328, 2318], [1261, 2287], [1237, 2338], [1302, 2359]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68750, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1282, 2242], [1301, 2202], [1288, 2196], [1268, 2236], [1282, 2242]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69219, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1295, 2371], [1302, 2366], [1286, 2356], [1280, 2365], [1295, 2371]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68127, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1302, 2366], [1299, 2362], [1302, 2358], [1221, 2339], [1286, 2356], [1302, 2366]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171509, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1328, 2318], [1354, 2278], [1282, 2242], [1261, 2287], [1328, 2318]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71358, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1379, 2238], [1402, 2201], [1319, 2163], [1301, 2202], [1379, 2238]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72105, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1354, 2278], [1379, 2238], [1301, 2202], [1282, 2242], [1354, 2278]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72049, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1415, 3440], [1441, 3379], [1425, 3375], [1515, 3185], [1299, 3084], [1212, 3344], [1415, 3440]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73770, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1230, 2942], [1265, 2862], [1364, 2681], [1264, 2648], [1141, 2900], [1230, 2942]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66655, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1261, 2287], [1282, 2242], [1268, 2236], [1248, 2280], [1261, 2287]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68811, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1302, 2359], [1237, 2338], [1261, 2287], [1248, 2280], [1221, 2339], [1302, 2359]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68067, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1257, 2261], [1275, 2224], [1260, 2219], [1243, 2256], [1257, 2261]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70895, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1239, 2300], [1257, 2261], [1243, 2256], [1224, 2296], [1239, 2300]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71397, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1280, 2365], [1286, 2356], [1221, 2339], [1134, 2341], [1133, 2347], [1218, 2343], [1280, 2365]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66766, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1267, 2385], [1280, 2365], [1218, 2343], [1133, 2347], [1267, 2385]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68187, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1243, 2256], [1260, 2219], [1183, 2189], [1178, 2203], [1170, 2229], [1243, 2256]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71251, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1224, 2296], [1243, 2256], [1170, 2229], [1156, 2274], [1224, 2296]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71309, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1134, 2341], [1221, 2339], [1239, 2300], [1224, 2296], [1206, 2334], [1134, 2341]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68687, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1212, 3344], [1299, 3084], [1198, 3037], [1093, 3337], [1212, 3344]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73628, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[924, 4040], [1255, 4008], [1267, 4000], [1540, 3640], [1442, 3564], [1455, 3545], [1369, 3478], [1401, 3434], [1212, 3344], [1164, 3341], [919, 3989], [924, 4040]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70282, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1250, 1781], [1288, 1716], [1236, 1704], [1225, 1758], [1232, 1774], [1250, 1781]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116114, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1275, 1518], [1302, 1490], [1283, 1479], [1275, 1518]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116071, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1303, 1490], [1320, 1470], [1296, 1456], [1291, 1444], [1283, 1478], [1303, 1490]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8664, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1283, 1796], [1323, 1724], [1288, 1716], [1250, 1781], [1283, 1796]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116115, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1323, 1724], [1340, 1692], [1328, 1676], [1328, 1662], [1248, 1645], [1236, 1704], [1323, 1724]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116118, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1328, 1662], [1342, 1647], [1333, 1601], [1261, 1584], [1248, 1645], [1328, 1662]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116120, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1333, 1601], [1360, 1554], [1289, 1512], [1275, 1518], [1261, 1584], [1333, 1601]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116069, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1299, 1889], [1192, 1796], [1244, 1544], [1104, 1514], [1082, 1509], [1100, 1517], [1219, 1542], [1207, 1599], [1196, 1648], [1195, 1655], [1187, 1694], [1177, 1738], [1164, 1746], [1152, 1741], [1097, 1717], [1037, 1691], [998, 1675], [938, 1650], [914, 1639], [881, 1627], [877, 1626], [872, 1624], [865, 1622], [859, 1621], [810, 1611], [759, 1604], [719, 1598], [678, 1587], [647, 1575], [619, 1562], [602, 1552], [568, 1527], [544, 1505], [526, 1483], [509, 1456], [493, 1425], [482, 1383], [439, 1374], [434, 1375], [395, 1376], [348, 1371], [401, 1380], [437, 1483], [471, 1532], [526, 1589], [578, 1624], [803, 1723], [860, 1699], [973, 1747], [1012, 1764], [1046, 1778], [1079, 1792], [1094, 1799], [1150, 1823], [1198, 1843], [1240, 1862], [1278, 1879], [1299, 1889]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171558, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1329, 1817], [1389, 1708], [1364, 1694], [1340, 1692], [1283, 1796], [1329, 1817]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116117, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[179, 1925], [220, 1889], [252, 1771], [465, 1832], [526, 1589], [471, 1532], [437, 1483], [401, 1560], [329, 1535], [223, 1553], [227, 1487], [116, 1864], [120, 1871], [179, 1925]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64984, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1103, 1934], [1150, 1823], [1094, 1799], [1059, 1901], [1103, 1934]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66887, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1147, 1960], [1103, 1934], [1059, 1901], [1116, 1945], [1147, 1960]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171607, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1147, 1960], [1198, 1843], [1150, 1823], [1103, 1934], [1147, 1960]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68328, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[-64, 1784], [-45, 1755], [-64, 1749], [-64, 1784]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64391, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1187, 1982], [1240, 1862], [1198, 1843], [1147, 1960], [1164, 1974], [1187, 1982]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68577, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1224, 2000], [1187, 1982], [1164, 1974], [1224, 2000]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171618, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1224, 2000], [1278, 1879], [1240, 1862], [1187, 1982], [1224, 2000]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68532, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1138, 2013], [1153, 1963], [1116, 1945], [1059, 1901], [1094, 1799], [1079, 1792], [1030, 1938], [1138, 2013]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66938, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1260, 2015], [1224, 2000], [1243, 2009], [1260, 2015]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171615, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1260, 2015], [1314, 1896], [1278, 1879], [1224, 2000], [1260, 2015]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67928, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1366, 1992], [1391, 1938], [1351, 1915], [1325, 1971], [1366, 1992]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68992, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1228, 2047], [1243, 2009], [1224, 2000], [1164, 1974], [1149, 2023], [1228, 2047]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68497, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1125, 2053], [1138, 2013], [1030, 1938], [1079, 1792], [1046, 1778], [1033, 1820], [971, 2007], [1125, 2053]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66310, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1298, 2030], [1351, 1915], [1314, 1896], [1260, 2015], [1298, 2030]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68013, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[400, 2086], [465, 1832], [252, 1771], [220, 1889], [179, 1925], [116, 1864], [76, 1820], [-45, 1755], [-64, 1784], [-64, 1813], [6, 1880], [94, 1940], [80, 1995], [400, 2086]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63430, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1340, 2047], [1366, 1992], [1325, 1971], [1298, 2030], [1340, 2047]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69063, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1355, 2052], [1379, 1998], [1366, 1992], [1340, 2047], [1355, 2052]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69495, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1210, 2102], [1243, 2009], [1228, 2047], [1210, 2102]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171612, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1210, 2102], [1228, 2047], [1149, 2023], [1133, 2080], [1210, 2102]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70547, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1208, 2108], [1210, 2102], [1133, 2080], [1131, 2086], [1208, 2108]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70184, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1239, 2111], [1270, 2019], [1260, 2015], [1243, 2009], [1210, 2102], [1239, 2111]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69136, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1206, 2114], [1208, 2108], [1131, 2086], [1128, 2092], [1206, 2114]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70725, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1322, 2085], [1340, 2047], [1298, 2030], [1270, 2019], [1256, 2061], [1322, 2085]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69933, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1104, 2118], [1125, 2053], [971, 2007], [950, 2072], [1104, 2118]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66370, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1237, 2117], [1239, 2111], [1210, 2102], [1208, 2108], [1237, 2117]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70129, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[372, 2125], [398, 2094], [400, 2086], [372, 2125]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171438, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1338, 2090], [1355, 2052], [1340, 2047], [1322, 2085], [1338, 2090]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69547, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1271, 2127], [1273, 2121], [1239, 2111], [1237, 2117], [1271, 2127]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70050, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1273, 2121], [1288, 2073], [1256, 2061], [1239, 2111], [1273, 2121]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70064, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1353, 2091], [1369, 2058], [1355, 2052], [1340, 2084], [1353, 2091]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69877, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1303, 2129], [1322, 2085], [1288, 2073], [1273, 2121], [1303, 2129]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69975, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1191, 2157], [1206, 2114], [1128, 2092], [1115, 2135], [1191, 2157]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70606, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1193, 2153], [1192, 2155], [1223, 2163], [1193, 2153]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171439, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1337, 2126], [1353, 2091], [1340, 2084], [1323, 2120], [1337, 2126]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69388, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1314, 2139], [1338, 2090], [1322, 2085], [1303, 2129], [1273, 2121], [1271, 2127], [1314, 2139]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69618, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1323, 2120], [1338, 2090], [1340, 2084], [1323, 2120]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171435, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1084, 2184], [1104, 2118], [950, 2072], [928, 2138], [1084, 2184]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64736, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1278, 2181], [1297, 2141], [1206, 2114], [1193, 2153], [1278, 2181]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70663, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1319, 2163], [1337, 2126], [1323, 2120], [1306, 2157], [1319, 2163]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69338, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1211, 2200], [1212, 2198], [1183, 2189], [1211, 2200]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171449, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[346, 2200], [346, 2190], [322, 2189], [330, 2161], [363, 2171], [372, 2125], [400, 2086], [80, 1995], [94, 1940], [6, 1880], [-64, 1813], [-64, 2034], [-39, 2043], [-32, 2015], [82, 2059], [134, 2117], [193, 2131], [186, 2149], [346, 2200]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63529, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1178, 2203], [1183, 2189], [1212, 2198], [1223, 2163], [1115, 2135], [1101, 2178], [1178, 2203]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70353, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1292, 2186], [1314, 2139], [1208, 2108], [1206, 2114], [1297, 2141], [1278, 2181], [1292, 2186]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70778, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[279, 2224], [-57, 2120], [43, 2153], [279, 2224]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154440, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1260, 2219], [1278, 2181], [1223, 2163], [1211, 2201], [1260, 2219]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71145, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[738, 2225], [876, 1767], [846, 1747], [708, 2219], [738, 2225]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 64007, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1301, 2202], [1319, 2163], [1306, 2157], [1288, 2196], [1301, 2202]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69286, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[760, 2229], [897, 1783], [876, 1767], [738, 2225], [760, 2229]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 63919, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1275, 2224], [1292, 2186], [1278, 2181], [1260, 2219], [1275, 2224]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70837, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[476, 4084], [924, 4040], [922, 4016], [471, 4059], [476, 4084]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 70371, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[392, 4066], [471, 4059], [440, 3911], [392, 4066]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73498, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3504, 3010], [3541, 3009], [3574, 2925], [3541, 2913], [3504, 3010]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116652, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3595, 2800], [3652, 2648], [3487, 2582], [3428, 2736], [3595, 2800]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116374, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3555, 2599], [3560, 2590], [3529, 2578], [3525, 2587], [3555, 2599]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116663, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3534, 2932], [3541, 2913], [3563, 2853], [3530, 2841], [3500, 2920], [3534, 2932]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116651, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3486, 2572], [3578, 2386], [3545, 2370], [3541, 2367], [3447, 2556], [3486, 2572]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116383, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3465, 3011], [3504, 3010], [3534, 2932], [3500, 2920], [3465, 3011]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115436, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3426, 3012], [3465, 3011], [3497, 2930], [3463, 2915], [3426, 3012]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115439, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3447, 2556], [3541, 2367], [3504, 2350], [3410, 2541], [3447, 2556]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116382, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3497, 2930], [3530, 2841], [3496, 2828], [3466, 2908], [3463, 2915], [3497, 2930]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116653, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3504, 2350], [3540, 2279], [3503, 2260], [3468, 2331], [3504, 2350]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116423, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3442, 2312], [3566, 2062], [3550, 2044], [3422, 2301], [3442, 2312]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116327, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3422, 2301], [3432, 2281], [3550, 2044], [3522, 2011], [3386, 2283], [3422, 2301]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116306, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3464, 2111], [3473, 2108], [3522, 2011], [3494, 1986], [3437, 2097], [3464, 2111]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116350, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3494, 1986], [3496, 1981], [3458, 1953], [3468, 1962], [3494, 1986]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171620, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3496, 1981], [3466, 1947], [3458, 1953], [3496, 1981]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116351, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3538, 1837], [3560, 1806], [3498, 1761], [3467, 1804], [3538, 1837]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116984, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3522, 2011], [3496, 1981], [3494, 1986], [3522, 2011]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116426, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3490, 2286], [3588, 2088], [3566, 2062], [3462, 2272], [3490, 2286]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116349, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3535, 2276], [3575, 2195], [3543, 2180], [3503, 2260], [3535, 2276]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116422, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3560, 1806], [3581, 1777], [3518, 1733], [3498, 1761], [3560, 1806]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116983, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3345, 1714], [3725, 1221], [4097, 804], [4160, 723], [4160, 407], [3896, 199], [3714, 388], [3586, 262], [3476, 363], [3389, 299], [2685, 996], [2695, 1008], [2759, 945], [2828, 1030], [2766, 1094], [3011, 1391], [3150, 1527], [3162, 1514], [3180, 1514], [3217, 1549], [3216, 1568], [3205, 1580], [3345, 1714]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116162, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3364, 2237], [3382, 2203], [3389, 2188], [3364, 2237]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171443, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3384, 2376], [3422, 2301], [3386, 2283], [3348, 2358], [3384, 2376]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116403, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3391, 1998], [3406, 1969], [3429, 1981], [3458, 1953], [3391, 1892], [3358, 1898], [3323, 1962], [3391, 1998]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116331, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3386, 2283], [3473, 2108], [3464, 2111], [3437, 2097], [3349, 2265], [3386, 2283]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116328, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3384, 2109], [3445, 1992], [3468, 1962], [3458, 1953], [3429, 1981], [3406, 1969], [3345, 2087], [3384, 2109]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116346, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3458, 1953], [3466, 1947], [3383, 1850], [3358, 1898], [3391, 1892], [3458, 1953]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116344, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3468, 1803], [3431, 1786], [3345, 1714], [3397, 1773], [3468, 1803]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116969, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3421, 2128], [3494, 1986], [3468, 1962], [3445, 1992], [3384, 2109], [3421, 2128]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116345, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3436, 2396], [3490, 2286], [3462, 2272], [3408, 2382], [3436, 2396]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116394, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3405, 2387], [3442, 2312], [3422, 2301], [3384, 2376], [3405, 2387]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116401, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3428, 2736], [3487, 2582], [3415, 2554], [3357, 2709], [3428, 2736]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116373, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3369, 3013], [3426, 3012], [3466, 2908], [3416, 2890], [3369, 3013]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116638, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3410, 2541], [3504, 2350], [3468, 2331], [3372, 2526], [3410, 2541]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116381, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3466, 2908], [3496, 2828], [3447, 2809], [3416, 2890], [3466, 2908]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116654, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3408, 2911], [3447, 2809], [3399, 2791], [3361, 2892], [3408, 2911]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116639, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3372, 2526], [3436, 2396], [3408, 2382], [3341, 2514], [3372, 2526]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116395, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3324, 3014], [3369, 3013], [3384, 2976], [3344, 2961], [3324, 3014]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115403, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3314, 3015], [3324, 3014], [3344, 2961], [3384, 2976], [3408, 2911], [3361, 2892], [3314, 3015]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116647, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3357, 2709], [3415, 2555], [3331, 2522], [3273, 2677], [3357, 2709]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116375, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3344, 2510], [3405, 2387], [3336, 2352], [3271, 2484], [3344, 2510]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116398, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3314, 3015], [3399, 2791], [3258, 2737], [3168, 3012], [3314, 3015]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116326, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3273, 2677], [3332, 2520], [3284, 2502], [3225, 2659], [3273, 2677]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116376, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3271, 2484], [3336, 2352], [3311, 2339], [3299, 2364], [3242, 2474], [3271, 2484]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116399, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3382, 2203], [3400, 2167], [3255, 2088], [3236, 2124], [3382, 2203]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116407, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3364, 2237], [3382, 2203], [3236, 2124], [3217, 2158], [3364, 2237]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116406, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3347, 2271], [3349, 2265], [3364, 2237], [3217, 2158], [3199, 2192], [3347, 2271]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116405, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3345, 2087], [3391, 1998], [3323, 1962], [3276, 2050], [3345, 2087]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116330, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3400, 2167], [3421, 2128], [3276, 2050], [3255, 2088], [3400, 2167]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116329, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3348, 2358], [3386, 2283], [3349, 2265], [3311, 2339], [3348, 2358]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116404, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3237, 2382], [3256, 2346], [3147, 2288], [3128, 2324], [3206, 2366], [3237, 2382]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116396, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3174, 2030], [3197, 2022], [3269, 1889], [3141, 1932], [3174, 2030]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116145, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3088, 2229], [3181, 2150], [3336, 1860], [3290, 1804], [3296, 1839], [3269, 1889], [3197, 2022], [3088, 2229]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221181, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3278, 2404], [3299, 2364], [3150, 2284], [3147, 2288], [3256, 2346], [3237, 2382], [3278, 2404]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116397, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3299, 2364], [3312, 2337], [3164, 2258], [3150, 2284], [3299, 2364]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116370, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3323, 1832], [3336, 1807], [3335, 1793], [3219, 1676], [3198, 1713], [3323, 1832]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116144, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3325, 2312], [3347, 2271], [3199, 2192], [3178, 2232], [3325, 2312]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116402, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3312, 2337], [3325, 2312], [3178, 2232], [3164, 2258], [3312, 2337]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116400, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3242, 2474], [3278, 2405], [3242, 2385], [3204, 2460], [3242, 2474]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116371, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3225, 2659], [3284, 2502], [3236, 2484], [3177, 2641], [3225, 2659]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116377, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3204, 2460], [3242, 2385], [3206, 2366], [3175, 2431], [3173, 2449], [3204, 2460]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116372, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3177, 2641], [3236, 2484], [3208, 2474], [3147, 2629], [3177, 2641]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116378, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3178, 2551], [3208, 2474], [3165, 2459], [3135, 2535], [3178, 2551]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116379, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3140, 2897], [3146, 2877], [3184, 2891], [3207, 2826], [3135, 2799], [3106, 2886], [3140, 2897]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116644, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3207, 2826], [3239, 2730], [3120, 2684], [3084, 2780], [3207, 2826]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116634, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3147, 2629], [3178, 2551], [3135, 2535], [3108, 2606], [3147, 2629]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116640, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3137, 3002], [3151, 2996], [3184, 2891], [3146, 2877], [3140, 2897], [3109, 2989], [3137, 3002]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116642, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3109, 2989], [3140, 2897], [3106, 2886], [3079, 2969], [3109, 2989]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116643, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3108, 2606], [3141, 2519], [3103, 2505], [3077, 2573], [3108, 2606]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116641, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3141, 2519], [3165, 2459], [3126, 2445], [3103, 2505], [3141, 2519]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116380, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3173, 2449], [3175, 2431], [3206, 2366], [3128, 2324], [3079, 2415], [3173, 2449]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116368, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3198, 1713], [3219, 1676], [3187, 1646], [3128, 1646], [3198, 1713]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116143, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3091, 595], [3132, 554], [3051, 472], [3009, 514], [3091, 595]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116716, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3049, 637], [3091, 595], [3009, 514], [2967, 556], [3049, 637]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116715, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3102, 1629], [3128, 1646], [3158, 1646], [3085, 1559], [3081, 1579], [3087, 1608], [2941, 1463], [3102, 1629]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221304, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3069, 2765], [3088, 2714], [3070, 2708], [3051, 2758], [3069, 2765]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116646, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3077, 2573], [3126, 2445], [3073, 2427], [3063, 2447], [3053, 2501], [3060, 2539], [3077, 2573]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116369, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3087, 2771], [3107, 2719], [3088, 2714], [3069, 2765], [3087, 2771]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116645, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3079, 2969], [3135, 2799], [3084, 2780], [3028, 2930], [3079, 2969]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116592, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3107, 2719], [3120, 2684], [3113, 2680], [3105, 2703], [3101, 2711], [3030, 2685], [3027, 2693], [3101, 2719], [3107, 2719]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116637, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3028, 2930], [3084, 2780], [3087, 2771], [3051, 2758], [2994, 2904], [3028, 2930]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116600, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3051, 2758], [3070, 2708], [3027, 2693], [3006, 2749], [3051, 2758]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116636, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3105, 2703], [3113, 2680], [3065, 2651], [3034, 2620], [2999, 2548], [2996, 2492], [2971, 2479], [2974, 2538], [2965, 2552], [2834, 2553], [2755, 2527], [2736, 2562], [2792, 2585], [2854, 2595], [2989, 2591], [3004, 2609], [3027, 2645], [3074, 2685], [3105, 2703]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116325, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2902, 2558], [2969, 2549], [2974, 2538], [2970, 2486], [2990, 2412], [3197, 2022], [3174, 2030], [3141, 1932], [3269, 1889], [3296, 1839], [3289, 1799], [3128, 1646], [3102, 1629], [2941, 1463], [2845, 1349], [2604, 1429], [2565, 1456], [2537, 1500], [2530, 1532], [2534, 1576], [2586, 1734], [2670, 1706], [2759, 1969], [2713, 1985], [2689, 2099], [2662, 2151], [2608, 2218], [2591, 2273], [2593, 2318], [2615, 2382], [2650, 2439], [2694, 2487], [2749, 2524], [2814, 2549], [2902, 2558]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116003, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3087, 1608], [3081, 1579], [3086, 1551], [2968, 1433], [2886, 1335], [2845, 1349], [2941, 1463], [3087, 1608]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116017, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2957, 2874], [3030, 2685], [3101, 2711], [3105, 2703], [3043, 2661], [3004, 2609], [2851, 2606], [2791, 2592], [2733, 2567], [2683, 2659], [2701, 2668], [2697, 2836], [2766, 2809], [2832, 2807], [2889, 2825], [2957, 2874]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116322, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3190, 360], [3226, 322], [3205, 303], [3171, 340], [3177, 346], [3190, 360]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116723, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3476, 363], [3497, 343], [3567, 223], [3537, 206], [3456, 348], [3476, 363]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116292, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3038, 368], [3098, 306], [3018, 270], [3012, 267], [3018, 259], [3009, 255], [2957, 331], [3038, 368]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116237, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3312, 376], [3389, 299], [3326, 256], [3234, 351], [3239, 355], [3266, 328], [3312, 376]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116290, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3208, 378], [3326, 256], [3302, 240], [3190, 360], [3208, 378]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116289, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3208, 378], [3237, 353], [3235, 351], [3208, 378]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171459, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3113, 410], [3177, 346], [3098, 306], [3054, 351], [3113, 410]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116239, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3259, 429], [3312, 376], [3266, 328], [3208, 378], [3259, 429]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116722, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3227, 460], [3259, 429], [3177, 346], [3146, 378], [3227, 460]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116721, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3195, 492], [3227, 460], [3146, 378], [3113, 410], [3195, 492]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116718, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3030, 492], [3113, 410], [3054, 351], [2961, 444], [3030, 492]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116236, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3132, 554], [3195, 492], [3113, 410], [3051, 472], [3132, 554]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116717, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3577, 3274], [3572, 3077], [3541, 3078], [3536, 3071], [3542, 3261], [3577, 3274]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115965, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3544, 3464], [3621, 3289], [3607, 3284], [3521, 3452], [3544, 3464]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115959, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3561, 3473], [3634, 3294], [3621, 3289], [3544, 3464], [3561, 3473]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115957, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3610, 3286], [3610, 3226], [3608, 3077], [3572, 3077], [3577, 3274], [3610, 3286]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115961, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3580, 3482], [3647, 3299], [3634, 3294], [3561, 3473], [3580, 3482]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115943, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3621, 3289], [3607, 3284], [3590, 3278], [3610, 3286], [3621, 3289]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170277, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3632, 3195], [3636, 3081], [3608, 3079], [3609, 3195], [3632, 3195]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115960, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3610, 3226], [3632, 3225], [3632, 3195], [3609, 3195], [3610, 3226]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115955, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3634, 3294], [3637, 3246], [3631, 3246], [3632, 3225], [3610, 3226], [3610, 3286], [3634, 3294]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115958, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3598, 3492], [3667, 3305], [3647, 3299], [3580, 3482], [3598, 3492]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115940, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3640, 3247], [3637, 3246], [3631, 3246], [3640, 3247]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170294, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3641, 3247], [3647, 3082], [3636, 3081], [3631, 3246], [3641, 3247]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115954, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3632, 3213], [3636, 3081], [3632, 3195], [3632, 3213]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170591, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3617, 3500], [3687, 3313], [3667, 3305], [3598, 3492], [3617, 3500]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115939, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3659, 3303], [3661, 3248], [3637, 3246], [3634, 3294], [3647, 3299], [3659, 3303]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115956, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3636, 3507], [3706, 3319], [3687, 3313], [3617, 3500], [3636, 3507]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115937, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3661, 3248], [3664, 3175], [3668, 3083], [3647, 3082], [3641, 3247], [3661, 3248]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115941, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3681, 3242], [3684, 3176], [3664, 3175], [3661, 3241], [3681, 3242]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115938, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3678, 3310], [3681, 3242], [3661, 3241], [3659, 3303], [3678, 3310]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115942, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3655, 3514], [3725, 3326], [3706, 3319], [3636, 3507], [3655, 3514]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115935, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3684, 3311], [3693, 3085], [3688, 3084], [3678, 3310], [3684, 3311]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115994, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3684, 3176], [3688, 3084], [3668, 3083], [3664, 3175], [3684, 3176]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115936, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3689, 3313], [3697, 3086], [3693, 3085], [3684, 3311], [3689, 3313]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115993, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3703, 3532], [3739, 3437], [3690, 3419], [3655, 3514], [3703, 3532]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116002, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3711, 3321], [3731, 3092], [3697, 3086], [3689, 3313], [3711, 3321]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115934, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3816, 3323], [3876, 3121], [3821, 3110], [3781, 3312], [3816, 3323]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115996, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3808, 3561], [3904, 3345], [3816, 3323], [3783, 3312], [3768, 3381], [3710, 3535], [3808, 3561]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115983, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3774, 3345], [3783, 3312], [3821, 3110], [3796, 3105], [3755, 3337], [3774, 3345]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115995, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3755, 3337], [3796, 3105], [3773, 3100], [3736, 3331], [3755, 3337]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115992, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3768, 3381], [3783, 3312], [3774, 3345], [3768, 3381]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170273, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3774, 3345], [3755, 3337], [3736, 3331], [3774, 3345]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170258, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3736, 3331], [3773, 3100], [3731, 3092], [3711, 3321], [3736, 3331]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115933, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3710, 3535], [3768, 3381], [3774, 3345], [3736, 3331], [3725, 3326], [3690, 3419], [3739, 3437], [3703, 3532], [3710, 3535]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115984, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3732, 3847], [3760, 3783], [3755, 3781], [3727, 3845], [3732, 3847]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83771, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3760, 3783], [3775, 3749], [3758, 3782], [3760, 3783]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170377, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3759, 3743], [3774, 3709], [3769, 3707], [3774, 3697], [3748, 3685], [3728, 3730], [3759, 3743]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79155, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3775, 3702], [3805, 3640], [3771, 3632], [3748, 3685], [3775, 3702]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79027, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3774, 3709], [3782, 3692], [3772, 3701], [3769, 3707], [3774, 3709]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79085, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3822, 4114], [3864, 4017], [3733, 3959], [3691, 4061], [3822, 4114]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83595, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3708, 4160], [3805, 4160], [3576, 4078], [3407, 4012], [3396, 3986], [3509, 3987], [3506, 3986], [3421, 3951], [3294, 3900], [3394, 4042], [3388, 4040], [3458, 4160], [3528, 4160], [3490, 4093], [3500, 4081], [3677, 4148], [3708, 4160]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170364, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3792, 3874], [3836, 3775], [3775, 3749], [3732, 3847], [3792, 3874]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78253, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3787, 3754], [3811, 3700], [3789, 3691], [3789, 3700], [3774, 3709], [3759, 3743], [3775, 3749], [3787, 3754]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79834, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3774, 3709], [3789, 3700], [3789, 3687], [3812, 3641], [3805, 3640], [3774, 3709]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79883, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3779, 3695], [3782, 3692], [3805, 3640], [3779, 3695]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170412, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3789, 3691], [3812, 3641], [3789, 3687], [3789, 3691]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170407, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3864, 4017], [3874, 3994], [3742, 3936], [3733, 3959], [3864, 4017]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83666, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3811, 3700], [3835, 3646], [3812, 3641], [3789, 3691], [3811, 3700]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79935, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3836, 3775], [3887, 3658], [3835, 3646], [3787, 3754], [3836, 3775]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 79990, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3861, 3904], [3916, 3780], [3846, 3750], [3836, 3775], [3792, 3874], [3861, 3904]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80807, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3836, 3775], [3887, 3658], [3846, 3750], [3836, 3775]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170404, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3881, 3765], [3925, 3667], [3887, 3658], [3846, 3750], [3881, 3765]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80655, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3934, 4049], [3944, 4025], [3874, 3994], [3864, 4017], [3934, 4049]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77165, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3893, 4142], [3934, 4049], [3864, 4017], [3822, 4114], [3893, 4142]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77722, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3727, 3845], [3775, 3749], [3728, 3730], [3685, 3826], [3727, 3845]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78196, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3739, 3705], [3748, 3685], [3771, 3632], [3722, 3619], [3691, 3688], [3739, 3705]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77437, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3685, 3826], [3739, 3705], [3691, 3688], [3638, 3806], [3685, 3826]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78145, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3708, 4160], [3677, 4148], [3673, 4160], [3708, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83024, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3691, 4061], [3742, 3936], [3665, 3902], [3626, 4013], [3618, 4010], [3610, 4028], [3691, 4061]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83119, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3638, 3806], [3722, 3619], [3697, 3611], [3615, 3796], [3638, 3806]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78088, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3615, 3796], [3697, 3611], [3672, 3602], [3632, 3693], [3592, 3785], [3615, 3796]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77346, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3632, 3693], [3672, 3602], [3632, 3588], [3594, 3676], [3632, 3693]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77300, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3673, 4160], [3677, 4148], [3500, 4081], [3490, 4093], [3528, 4160], [3673, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82460, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3634, 3991], [3665, 3902], [3562, 3857], [3523, 3945], [3634, 3991]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83074, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3594, 3676], [3632, 3588], [3592, 3572], [3554, 3658], [3594, 3676]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76750, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 3748], [4160, 3688], [4133, 3672], [4030, 3646], [4004, 3643], [4014, 3584], [4011, 3584], [3819, 3538], [3896, 3361], [3808, 3561], [3710, 3535], [3703, 3532], [3655, 3514], [3617, 3500], [3598, 3492], [3580, 3482], [3561, 3473], [3544, 3464], [3521, 3452], [3465, 3420], [3443, 3407], [3421, 3393], [3399, 3380], [3382, 3369], [3364, 3358], [3322, 3332], [3295, 3315], [3261, 3294], [3217, 3267], [3153, 3228], [3111, 3202], [3046, 3163], [3015, 3144], [2992, 3129], [2957, 3103], [2949, 3097], [2898, 3154], [2909, 3161], [2939, 3183], [2961, 3199], [2965, 3279], [2967, 3330], [2969, 3368], [2975, 3486], [2988, 3529], [3085, 3663], [3155, 3743], [3163, 3738], [3209, 3729], [3294, 3742], [3479, 3820], [3562, 3857], [3665, 3902], [3742, 3936], [3865, 3991], [3958, 3991], [4005, 4011], [4024, 4017], [4066, 4022], [4130, 4024], [4142, 4022], [4160, 4017], [4160, 3937], [4159, 3938], [4106, 3972], [4043, 3980], [3981, 3957], [3925, 3932], [3861, 3904], [3792, 3874], [3732, 3847], [3727, 3845], [3685, 3826], [3638, 3806], [3615, 3796], [3592, 3785], [3515, 3752], [3436, 3718], [3362, 3686], [3227, 3632], [3313, 3447], [3433, 3520], [3443, 3498], [3515, 3537], [3552, 3555], [3592, 3572], [3632, 3588], [3672, 3602], [3697, 3611], [3722, 3619], [3771, 3632], [3805, 3640], [3812, 3641], [3835, 3646], [3887, 3658], [3925, 3667], [3963, 3675], [3997, 3683], [4033, 3691], [4083, 3702], [4141, 3726], [4160, 3748]], [[3095, 3625], [3055, 3572], [3011, 3510], [3118, 3416], [3011, 3506], [3003, 3455], [2999, 3370], [2998, 3339], [2994, 3219], [3035, 3245], [3079, 3272], [3122, 3299], [3161, 3323], [3183, 3337], [3196, 3344], [3188, 3369], [3251, 3406], [3261, 3384], [3323, 3424], [3261, 3552], [3227, 3632], [3226, 3634], [3148, 3641], [3097, 3621], [3095, 3625]], [[3095, 3625], [3141, 3642], [3110, 3646], [3095, 3625]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170589, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3554, 3658], [3552, 3662], [3632, 3693], [3594, 3676], [3554, 3658]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170235, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3592, 3785], [3632, 3693], [3552, 3662], [3515, 3752], [3592, 3785]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77247, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3610, 4028], [3618, 4010], [3626, 4013], [3634, 3991], [3523, 3945], [3506, 3986], [3610, 4028]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83174, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3552, 3662], [3592, 3572], [3552, 3555], [3513, 3645], [3552, 3662]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76689, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 3626], [4160, 3389], [4042, 3372], [4011, 3584], [4120, 3610], [4160, 3626]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115499, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4154, 4063], [4160, 4046], [4160, 4031], [4135, 4043], [4154, 4063]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116215, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4159, 3938], [4160, 3937], [4160, 3857], [4071, 3843], [4159, 3938]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84422, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 3857], [4160, 3794], [4071, 3843], [4160, 3857]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84476, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4086, 3835], [4160, 3794], [4160, 3748], [4141, 3726], [4086, 3835]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82405, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4106, 3972], [4159, 3938], [4071, 3843], [4048, 3837], [4106, 3972]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 83833, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4122, 4160], [4154, 4063], [4084, 4079], [4057, 4160], [4122, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116211, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3930, 4157], [3951, 4104], [3967, 4063], [3934, 4049], [3893, 4142], [3930, 4157]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 77659, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3925, 3932], [3976, 3817], [3912, 3789], [3861, 3904], [3925, 3932]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80857, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3916, 3780], [3963, 3675], [3925, 3667], [3881, 3765], [3916, 3780]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80751, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3967, 4063], [3976, 4040], [3944, 4025], [3934, 4049], [3967, 4063]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 85144, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3945, 3803], [3997, 3683], [3963, 3675], [3912, 3789], [3945, 3803]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81461, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3981, 3957], [3996, 3923], [3985, 3918], [4006, 3869], [3981, 3857], [3996, 3823], [3976, 3817], [3925, 3932], [3981, 3957]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 78951, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3980, 4160], [3996, 4123], [3951, 4104], [3930, 4157], [3937, 4160], [3980, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84614, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3996, 4123], [4024, 4054], [3976, 4040], [3951, 4104], [3996, 4123]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 84573, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3975, 3817], [4033, 3691], [3997, 3683], [3945, 3803], [3975, 3817]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81540, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4043, 3980], [4034, 3833], [3996, 3823], [3981, 3857], [4006, 3869], [3985, 3918], [3996, 3923], [3981, 3957], [4043, 3980]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82352, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4025, 3831], [4083, 3702], [4033, 3691], [3975, 3817], [3996, 3823], [4025, 3831]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81634, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4057, 4160], [4092, 4054], [4024, 4054], [3980, 4160], [4057, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116213, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4043, 3980], [4106, 3972], [4048, 3837], [4034, 3833], [4043, 3980]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81588, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4071, 3843], [4086, 3835], [4141, 3726], [4083, 3702], [4025, 3831], [4034, 3833], [4071, 3843]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81682, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4011, 3584], [4042, 3372], [3900, 3352], [3819, 3538], [4011, 3584]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116193, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4086, 3152], [4160, 3128], [4160, 3124], [4127, 3106], [4091, 3118], [4086, 3152]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 173210, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3567, 223], [3647, 85], [3617, 66], [3537, 206], [3567, 223]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116304, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3537, 206], [3677, -39], [3654, -52], [3515, 194], [3537, 206]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116226, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3497, 343], [3586, 262], [3600, 278], [3621, 253], [3567, 223], [3497, 343]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116307, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3567, 223], [3647, 85], [3730, -64], [3729, -64], [3649, 80], [3567, 223]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171645, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3611, 24], [3660, -64], [3620, -64], [3581, 8], [3611, 24]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116212, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3621, 253], [3763, 84], [3740, 68], [3704, 114], [3649, 80], [3567, 223], [3621, 253]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116305, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3642, 75], [3722, -64], [3691, -64], [3677, -39], [3620, 61], [3642, 75]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116217, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3647, 85], [3730, -64], [3722, -64], [3642, 75], [3620, 61], [3617, 66], [3647, 85]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116219, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3677, -39], [3691, -64], [3660, -64], [3654, -52], [3677, -39]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116214, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3669, 92], [3774, -64], [3729, -64], [3649, 80], [3669, 92]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116222, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3714, 388], [3896, 199], [3822, 126], [3763, 84], [3598, 280], [3714, 388]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116167, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3704, 114], [3740, 68], [3844, -64], [3774, -64], [3669, 92], [3704, 114]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116224, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3914, 213], [4075, 17], [3968, -64], [3844, -64], [3740, 68], [3822, 126], [3914, 213]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116170, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3914, 213], [3822, 126], [3896, 199], [3914, 213]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171631, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3976, 1014], [3994, 993], [3956, 964], [3938, 985], [3976, 1014]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116798, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3976, 262], [4138, 61], [4105, 41], [3945, 238], [3976, 262]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116313, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3945, 238], [4106, 33], [4075, 17], [3914, 213], [3945, 238]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116312, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4027, 954], [4059, 915], [4023, 888], [3990, 925], [4027, 954]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116812, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4095, 1070], [4126, 1030], [3990, 925], [3956, 964], [3994, 993], [4095, 1070]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116799, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4059, 915], [4093, 877], [4057, 849], [4023, 888], [4059, 915]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116815, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4126, 1030], [4156, 990], [4059, 915], [4027, 954], [4126, 1030]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116811, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4093, 877], [4130, 833], [4097, 804], [4057, 849], [4093, 877]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116816, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4022, 298], [4160, 127], [4160, 84], [4135, 64], [3976, 262], [4022, 298]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116315, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4071, -61], [4072, -64], [4067, -64], [4071, -61]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 37638, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4132, 835], [4153, 809], [4160, 815], [4160, 763], [4141, 748], [4097, 804], [4132, 835]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116736, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 929], [4160, 860], [4132, 835], [4093, 877], [4160, 929]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116814, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4156, 990], [4160, 985], [4160, 929], [4093, 877], [4059, 915], [4156, 990]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116813, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4052, 322], [4160, 186], [4160, 127], [4022, 298], [4052, 322]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116317, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3990, 925], [3725, 1221], [3761, 1185], [3807, 1134], [3854, 1080], [3890, 1040], [3919, 1006], [3938, 985], [3956, 964], [3990, 925]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171471, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4130, 833], [4093, 877], [4132, 835], [4130, 833]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171491, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 763], [4160, 723], [4141, 748], [4160, 763]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116737, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 860], [4160, 815], [4153, 809], [4132, 835], [4160, 860]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116838, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 407], [4160, 186], [4052, 322], [4160, 407]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116171, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 7], [4160, -64], [4072, -64], [4071, -61], [4160, 7]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 37288, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4078, 1093], [4095, 1070], [3994, 993], [3976, 1014], [4078, 1093]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116797, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1092], [4160, 1071], [4150, 1083], [4160, 1092]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116826, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4127, 1181], [4160, 1141], [4153, 1148], [4127, 1181]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171475, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4153, 1148], [4160, 1140], [4160, 1092], [4150, 1083], [4120, 1122], [4153, 1148]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116818, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4100, 1214], [4127, 1181], [4153, 1148], [4120, 1122], [4069, 1189], [4100, 1214]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116789, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1173], [4160, 1140], [4144, 1160], [4160, 1173]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116833, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3803, 1218], [3848, 1165], [3807, 1134], [3761, 1185], [3803, 1218]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116791, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3894, 1111], [3928, 1070], [3890, 1040], [3854, 1080], [3894, 1111]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116793, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4034, 1151], [4060, 1116], [3919, 1006], [3890, 1040], [3928, 1070], [4034, 1151]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116795, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4001, 1194], [4034, 1151], [3928, 1070], [3894, 1111], [4001, 1194]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116792, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3957, 1036], [3976, 1014], [3938, 985], [3919, 1006], [3957, 1036]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116796, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4060, 1116], [4078, 1093], [3976, 1014], [3957, 1036], [4060, 1116]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116794, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3581, 1777], [3602, 1748], [3539, 1703], [3518, 1733], [3581, 1777]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116982, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3468, 1803], [3828, 1309], [3725, 1221], [3345, 1714], [3431, 1786], [3468, 1803]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116729, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3602, 1748], [3622, 1720], [3559, 1675], [3539, 1703], [3602, 1748]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116981, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3631, 1929], [3639, 1913], [3550, 1874], [3543, 1888], [3631, 1929]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116355, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3575, 2195], [3614, 2117], [3588, 2088], [3543, 2180], [3575, 2195]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116410, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3540, 2279], [3618, 2122], [3614, 2117], [3535, 2276], [3540, 2279]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116427, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3545, 2370], [3646, 2165], [3613, 2132], [3504, 2350], [3545, 2370]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116347, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3596, 2003], [3616, 1961], [3561, 1897], [3543, 1888], [3526, 1923], [3596, 2003]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116353, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3525, 2587], [3615, 2404], [3578, 2386], [3486, 2572], [3525, 2587]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116425, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3574, 2925], [3597, 2866], [3563, 2853], [3541, 2913], [3574, 2925]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116650, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3564, 3009], [3594, 2932], [3574, 2925], [3541, 3009], [3564, 3009]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115434, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3564, 3009], [3587, 3008], [3613, 2939], [3594, 2932], [3564, 3009]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115427, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3589, 2612], [3593, 2603], [3560, 2590], [3555, 2599], [3589, 2612]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116659, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3560, 2590], [3645, 2419], [3615, 2404], [3529, 2578], [3560, 2590]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116409, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3613, 2939], [3635, 2881], [3597, 2866], [3574, 2925], [3613, 2939]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116648, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3650, 3013], [3692, 2903], [3635, 2881], [3587, 3008], [3650, 3013]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116649, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3657, 2639], [3662, 2630], [3593, 2603], [3589, 2612], [3657, 2639]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116660, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3615, 2404], [3688, 2258], [3705, 2223], [3673, 2185], [3574, 2384], [3615, 2404]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116424, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3636, 1985], [3657, 1942], [3636, 1932], [3616, 1961], [3636, 1985]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116356, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3618, 1957], [3636, 1932], [3618, 1956], [3618, 1957]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171608, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3574, 2384], [3673, 2185], [3649, 2157], [3545, 2370], [3574, 2384]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116348, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3616, 1961], [3631, 1929], [3561, 1897], [3616, 1961]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116354, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3616, 2027], [3636, 1985], [3616, 1961], [3596, 2003], [3616, 2027]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116358, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3622, 1720], [3643, 1691], [3581, 1645], [3559, 1675], [3622, 1720]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116980, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3643, 1691], [3665, 1662], [3602, 1616], [3581, 1645], [3643, 1691]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116979, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3651, 1885], [3686, 1835], [3622, 1790], [3577, 1852], [3651, 1885]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116971, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3665, 1662], [3686, 1632], [3623, 1587], [3602, 1616], [3665, 1662]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116873, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3707, 1603], [3728, 1575], [3665, 1530], [3644, 1559], [3707, 1603]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116871, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3686, 1632], [3707, 1603], [3644, 1559], [3623, 1587], [3686, 1632]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116872, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3686, 1835], [3707, 1805], [3644, 1760], [3622, 1790], [3686, 1835]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116970, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3676, 2031], [3674, 2011], [3689, 1978], [3701, 1973], [3696, 1971], [3700, 1962], [3657, 1942], [3636, 1985], [3676, 2031]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116357, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3734, 2164], [3754, 2125], [3636, 1985], [3616, 2027], [3734, 2164]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116360, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3645, 2419], [3728, 2250], [3705, 2223], [3615, 2404], [3645, 2419]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116408, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3618, 1957], [3636, 1932], [3657, 1942], [3665, 1924], [3639, 1913], [3618, 1957]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116359, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3593, 2603], [3754, 2279], [3728, 2250], [3560, 2590], [3593, 2603]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116308, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3665, 2827], [3722, 2676], [3652, 2648], [3595, 2800], [3665, 2827]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116655, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3700, 3023], [3721, 2969], [3674, 2950], [3650, 3013], [3700, 3023]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115406, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3709, 2660], [3713, 2651], [3662, 2630], [3657, 2639], [3709, 2660]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116661, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3662, 2630], [3800, 2333], [3754, 2279], [3593, 2603], [3662, 2630]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116310, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3698, 2960], [3716, 2912], [3692, 2903], [3674, 2950], [3698, 2960]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115430, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3737, 2854], [3786, 2725], [3786, 2701], [3722, 2676], [3665, 2827], [3737, 2854]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116658, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3721, 2969], [3740, 2921], [3716, 2912], [3698, 2960], [3721, 2969]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115429, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3711, 1913], [3729, 1885], [3720, 1880], [3701, 1908], [3711, 1913]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117007, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3701, 1908], [3720, 1880], [3693, 1861], [3670, 1894], [3701, 1908]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117000, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3701, 1973], [3713, 1968], [3700, 1962], [3696, 1971], [3701, 1973]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116367, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3707, 1805], [3746, 1746], [3685, 1703], [3644, 1760], [3707, 1805]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116972, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3728, 1575], [3748, 1547], [3687, 1501], [3665, 1530], [3728, 1575]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116870, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3670, 1894], [3780, 1733], [3763, 1721], [3707, 1805], [3651, 1885], [3670, 1894]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116976, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3746, 1746], [3766, 1717], [3705, 1674], [3685, 1703], [3746, 1746]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116973, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3720, 1880], [3766, 1812], [3739, 1793], [3693, 1861], [3720, 1880]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116999, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3875, 1365], [3916, 1305], [3761, 1185], [3725, 1221], [3828, 1309], [3823, 1316], [3875, 1365]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116786, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3853, 1402], [3875, 1365], [3823, 1316], [3791, 1357], [3853, 1402]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116907, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3849, 1595], [3878, 1555], [3821, 1515], [3793, 1554], [3849, 1595]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116901, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3851, 1683], [3874, 1650], [3832, 1620], [3827, 1628], [3809, 1654], [3851, 1683]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117028, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3816, 1757], [3861, 1689], [3851, 1683], [3807, 1750], [3816, 1757]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117010, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3809, 1654], [3806, 1658], [3851, 1683], [3809, 1654]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171543, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3786, 1946], [3896, 1776], [3882, 1770], [3851, 1817], [3823, 1798], [3783, 1859], [3806, 1885], [3772, 1940], [3786, 1946]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116977, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3802, 2180], [3833, 2120], [3872, 2043], [3840, 2028], [3776, 2154], [3802, 2180]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116365, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3846, 2233], [3886, 2144], [3833, 2120], [3801, 2182], [3846, 2233]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116496, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3845, 1973], [3948, 1802], [3921, 1789], [3896, 1776], [3786, 1946], [3845, 1973]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116978, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3851, 1817], [3882, 1770], [3890, 1757], [3846, 1728], [3806, 1787], [3851, 1817]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117013, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3846, 1728], [3869, 1694], [3861, 1689], [3839, 1722], [3846, 1728]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117015, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3878, 1555], [3905, 1515], [3850, 1476], [3821, 1515], [3878, 1555]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116899, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3869, 1694], [3891, 1661], [3874, 1650], [3851, 1683], [3869, 1694]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117011, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3890, 1757], [3915, 1718], [3872, 1690], [3846, 1728], [3890, 1757]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117012, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3905, 1515], [3932, 1476], [3878, 1437], [3850, 1476], [3905, 1515]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116900, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3874, 1650], [3900, 1611], [3876, 1594], [3960, 1468], [3945, 1457], [3849, 1595], [3832, 1620], [3874, 1650]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116925, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3932, 1476], [3945, 1457], [3909, 1430], [3878, 1437], [3932, 1476]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116902, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3900, 1611], [3948, 1538], [3924, 1522], [3876, 1594], [3900, 1611]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116924, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3915, 1718], [3940, 1680], [3897, 1652], [3872, 1690], [3915, 1718]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117001, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3890, 1757], [3923, 1707], [3915, 1718], [3890, 1757]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171622, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3891, 1661], [3917, 1624], [3900, 1611], [3874, 1650], [3891, 1661]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117008, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3887, 2280], [3977, 2092], [3959, 2084], [3924, 2159], [3887, 2142], [3846, 2233], [3887, 2280]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116363, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3888, 2140], [3922, 2066], [3872, 2043], [3833, 2120], [3888, 2140]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116362, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3886, 2144], [3887, 2142], [3888, 2140], [3833, 2120], [3886, 2144]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170418, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3905, 2604], [3951, 2508], [3925, 2478], [3874, 2589], [3905, 2604]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116435, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3896, 3062], [3923, 2991], [3878, 2974], [3848, 3052], [3896, 3062]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115988, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3860, 2700], [3905, 2604], [3874, 2589], [3829, 2687], [3860, 2700]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115214, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3829, 2687], [3925, 2478], [3903, 2452], [3800, 2676], [3829, 2687]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116433, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3868, 2904], [3917, 2776], [3833, 2744], [3785, 2872], [3868, 2904]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116656, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3848, 3052], [3878, 2974], [3824, 2953], [3790, 3041], [3848, 3052]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115989, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3790, 3041], [3805, 3003], [3767, 2990], [3751, 3033], [3790, 3041]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115990, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3805, 3003], [3824, 2953], [3788, 2939], [3767, 2990], [3805, 3003]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115991, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3785, 2872], [3833, 2744], [3786, 2725], [3737, 2854], [3785, 2872]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116657, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3786, 2680], [3786, 2670], [3800, 2676], [3903, 2452], [3840, 2379], [3713, 2651], [3786, 2680]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116314, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3776, 2154], [3770, 2165], [3778, 2156], [3776, 2154]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171611, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3806, 1787], [3846, 1728], [3839, 1722], [3799, 1782], [3806, 1787]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117014, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3833, 1431], [3853, 1402], [3791, 1357], [3769, 1386], [3833, 1431]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116908, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3827, 1628], [3849, 1595], [3793, 1554], [3769, 1587], [3827, 1628]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116898, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3807, 1750], [3851, 1683], [3806, 1658], [3763, 1721], [3807, 1750]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117029, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3774, 1818], [3816, 1757], [3807, 1750], [3766, 1812], [3774, 1818]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117009, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3811, 1460], [3833, 1431], [3769, 1386], [3749, 1415], [3811, 1460]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116867, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3806, 1658], [3827, 1628], [3769, 1587], [3749, 1614], [3806, 1658]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116897, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3802, 1777], [3816, 1757], [3826, 1740], [3802, 1777]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171600, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3777, 2152], [3840, 2028], [3810, 2014], [3754, 2125], [3777, 2152]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116366, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3758, 2190], [3777, 2152], [3754, 2125], [3734, 2164], [3758, 2190]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116498, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3772, 1940], [3806, 1885], [3783, 1859], [3739, 1925], [3772, 1940]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117003, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3766, 1812], [3807, 1750], [3780, 1733], [3739, 1793], [3766, 1812]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117030, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3739, 1925], [3823, 1798], [3806, 1787], [3721, 1917], [3739, 1925]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116997, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3786, 1687], [3806, 1658], [3749, 1614], [3727, 1645], [3786, 1687]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116975, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3790, 1490], [3811, 1460], [3749, 1415], [3728, 1445], [3790, 1490]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116868, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3721, 1917], [3806, 1787], [3799, 1782], [3729, 1885], [3711, 1913], [3721, 1917]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116998, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3729, 1885], [3774, 1818], [3766, 1812], [3720, 1880], [3729, 1885]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116985, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3766, 1717], [3786, 1687], [3727, 1645], [3705, 1674], [3766, 1717]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116974, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3748, 1547], [3790, 1490], [3728, 1445], [3687, 1501], [3748, 1547]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116869, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3810, 2014], [3794, 1980], [3665, 1924], [3657, 1942], [3713, 1968], [3810, 2014]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116361, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3754, 2125], [3810, 2014], [3713, 1968], [3689, 1978], [3674, 2011], [3676, 2036], [3754, 2125]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116352, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3768, 2989], [3788, 2939], [3740, 2921], [3721, 2969], [3768, 2989]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115404, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3786, 2691], [3786, 2680], [3713, 2651], [3709, 2660], [3786, 2691]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116662, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3713, 2651], [3840, 2379], [3800, 2333], [3662, 2630], [3713, 2651]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116311, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3751, 3033], [3768, 2989], [3720, 2971], [3700, 3023], [3751, 3033]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115405, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3768, 2989], [3721, 2969], [3720, 2971], [3768, 2989]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170599, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4090, 3088], [4099, 3067], [4088, 3054], [4039, 3035], [4019, 3086], [4090, 3088]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115985, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4059, 2977], [4114, 2833], [4067, 2814], [4011, 2959], [4059, 2977]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116665, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4043, 2749], [4084, 2662], [4070, 2646], [4026, 2742], [4043, 2749]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115349, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4063, 2481], [4111, 2377], [4059, 2353], [4018, 2430], [4063, 2481]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116487, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4079, 2301], [4138, 2176], [4111, 2163], [4052, 2287], [4079, 2301]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116430, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4073, 2244], [4111, 2163], [4079, 2146], [4040, 2228], [4073, 2244]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116502, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4090, 1468], [4123, 1428], [4072, 1385], [4040, 1426], [4090, 1468]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116893, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4033, 2064], [4056, 2055], [4160, 1853], [4160, 1616], [4134, 1598], [4006, 1822], [3905, 2001], [4033, 2064]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116732, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4090, 1468], [4040, 1426], [4039, 1427], [4090, 1468]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171563, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4076, 1380], [4113, 1334], [4047, 1281], [4010, 1328], [4076, 1380]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116892, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4074, 1489], [4090, 1468], [4039, 1427], [4021, 1449], [4074, 1489]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116895, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4018, 2430], [4047, 2370], [4079, 2301], [4052, 2287], [3996, 2405], [4018, 2430]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116432, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4028, 2253], [4079, 2146], [4047, 2129], [3997, 2239], [4028, 2253]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116481, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4006, 1822], [4134, 1598], [4104, 1575], [3966, 1803], [4006, 1822]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116906, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4055, 1406], [4076, 1380], [4010, 1328], [3992, 1350], [4055, 1406]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116891, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4055, 1406], [3992, 1350], [3992, 1351], [4055, 1406]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171553, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4039, 1427], [4055, 1406], [3992, 1351], [3973, 1375], [4039, 1427]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116879, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3986, 1686], [4071, 1551], [4040, 1528], [3951, 1663], [3986, 1686]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116904, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3962, 1809], [3966, 1803], [4104, 1575], [4071, 1551], [3921, 1789], [3962, 1809]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116905, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3996, 2405], [4073, 2244], [4040, 2228], [3971, 2376], [3996, 2405]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116500, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4011, 2959], [4067, 2814], [4013, 2795], [3959, 2939], [4011, 2959]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116666, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4024, 2745], [4070, 2646], [4002, 2568], [3982, 2611], [4054, 2644], [4031, 2706], [4009, 2701], [3994, 2740], [4024, 2745]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115347, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4019, 3086], [4039, 3035], [3992, 3017], [3969, 3077], [4019, 3086]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115986, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3994, 2740], [4009, 2701], [4031, 2706], [4054, 2644], [3982, 2611], [3928, 2726], [3946, 2723], [3994, 2740]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115216, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3966, 2646], [4002, 2568], [3975, 2537], [3931, 2631], [3966, 2646]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115220, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3959, 2939], [4013, 2795], [3968, 2786], [3917, 2923], [3959, 2939]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115209, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3969, 3077], [3992, 3017], [3923, 2991], [3896, 3062], [3969, 3077]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115987, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3917, 2923], [3968, 2786], [3917, 2776], [3868, 2904], [3917, 2923]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115211, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3892, 2713], [3975, 2537], [3951, 2508], [3860, 2700], [3892, 2713]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116438, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3928, 2726], [3966, 2646], [3931, 2631], [3892, 2713], [3928, 2726]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115218, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3905, 2001], [4006, 1822], [3984, 1811], [3883, 1990], [3905, 2001]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117006, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3924, 2159], [3959, 2084], [3922, 2066], [3887, 2142], [3924, 2159]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116477, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3883, 1990], [3984, 1811], [3948, 1802], [3845, 1973], [3883, 1990]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117005, 'type': 'Feature'}, {'geometry': {'type': 'MultiPolygon', 'coordinates': [[[[4160, 2188], [4160, 2130], [4153, 2126], [4108, 2103], [4101, 2080], [4136, 2013], [4154, 1976], [4160, 1964], [4160, 1853], [4056, 2055], [4033, 2064], [3912, 2004], [3876, 2045], [3922, 2066], [3959, 2084], [3977, 2092], [4047, 2129], [4111, 2163], [4138, 2176], [4079, 2301], [4047, 2370], [4018, 2430], [4059, 2353], [4142, 2178], [4160, 2188]]], [[[4160, 3016], [4138, 3007], [4107, 2995], [4011, 2959], [3959, 2939], [3917, 2923], [3868, 2904], [3785, 2872], [3665, 2827], [3595, 2800], [3428, 2736], [3357, 2709], [3307, 2690], [3264, 2739], [3399, 2791], [3447, 2809], [3496, 2828], [3530, 2841], [3563, 2853], [3597, 2866], [3635, 2881], [3692, 2903], [3788, 2939], [3878, 2974], [3923, 2991], [3992, 3017], [4039, 3035], [4088, 3054], [4099, 3067], [4090, 3088], [4019, 3086], [3969, 3077], [3896, 3062], [3848, 3052], [3790, 3041], [3751, 3033], [3700, 3023], [3650, 3013], [3587, 3008], [3564, 3009], [3541, 3009], [3504, 3010], [3426, 3012], [3369, 3013], [3324, 3014], [3314, 3015], [3168, 3012], [3253, 2751], [3218, 2791], [3207, 2826], [3184, 2891], [3151, 2996], [3137, 3002], [3109, 2989], [3079, 2969], [3069, 2961], [3029, 3006], [3030, 3008], [3047, 3020], [3065, 3033], [3124, 3068], [3160, 3073], [3200, 3079], [3333, 3075], [3358, 3075], [3385, 3074], [3465, 3072], [3501, 3071], [3536, 3070], [3536, 3071], [3541, 3078], [3572, 3077], [3608, 3077], [3608, 3079], [3636, 3081], [3647, 3082], [3668, 3083], [3688, 3084], [3693, 3085], [3697, 3086], [3731, 3092], [3773, 3100], [3796, 3105], [3876, 3121], [4080, 3154], [4086, 3152], [4091, 3118], [4160, 3096], [4160, 3016]]], [[[4160, 2752], [4160, 2594], [4099, 2523], [4063, 2481], [4018, 2430], [3996, 2405], [3971, 2376], [3948, 2349], [3887, 2280], [3846, 2233], [3801, 2182], [3802, 2180], [3778, 2156], [3770, 2165], [3758, 2190], [3753, 2185], [3712, 2231], [3728, 2250], [3754, 2279], [3800, 2333], [3840, 2379], [3903, 2452], [3925, 2478], [3951, 2508], [3975, 2537], [4002, 2568], [4070, 2646], [4084, 2662], [4160, 2752]]], [[[4160, 2853], [4160, 2799], [4043, 2749], [4026, 2742], [4024, 2745], [3994, 2740], [3946, 2723], [3928, 2726], [3892, 2713], [3860, 2700], [3829, 2687], [3800, 2676], [3786, 2670], [3786, 2691], [3709, 2660], [3657, 2639], [3589, 2612], [3555, 2599], [3525, 2587], [3486, 2572], [3447, 2556], [3431, 2550], [3424, 2558], [3487, 2582], [3722, 2676], [3786, 2701], [3786, 2725], [3833, 2744], [3917, 2776], [3968, 2786], [4013, 2795], [4067, 2814], [4114, 2833], [4160, 2853]]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 170303, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3921, 1789], [3986, 1686], [3951, 1663], [3882, 1770], [3921, 1789]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117004, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3940, 1680], [3951, 1663], [3909, 1636], [3897, 1652], [3940, 1680]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117002, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3917, 1624], [3965, 1551], [3948, 1538], [3900, 1611], [3917, 1624]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116921, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3948, 1538], [3983, 1485], [3960, 1468], [3924, 1522], [3948, 1538]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116923, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3953, 1399], [3992, 1351], [3963, 1328], [3936, 1363], [3940, 1389], [3953, 1399]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116874, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3951, 1663], [4040, 1528], [4001, 1498], [3909, 1636], [3951, 1663]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116903, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3965, 1551], [4001, 1498], [3983, 1485], [3948, 1538], [3965, 1551]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116922, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3948, 2349], [4047, 2129], [3977, 2092], [3887, 2280], [3948, 2349]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116364, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3971, 2376], [4028, 2253], [3997, 2239], [3948, 2349], [3971, 2376]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116484, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3982, 1810], [3966, 1803], [3964, 1806], [3982, 1810]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171605, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4021, 1449], [4039, 1427], [3973, 1375], [3953, 1399], [4021, 1449]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116877, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4123, 1428], [4140, 1406], [4088, 1364], [4076, 1380], [4072, 1385], [4123, 1428]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116894, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4115, 1519], [4160, 1459], [4160, 1451], [4123, 1428], [4074, 1489], [4115, 1519]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116896, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4140, 1406], [4159, 1382], [4107, 1341], [4088, 1364], [4140, 1406]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116601, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4111, 2377], [4160, 2273], [4160, 2201], [4083, 2364], [4111, 2377]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116428, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4083, 2364], [4160, 2201], [4160, 2188], [4142, 2178], [4059, 2353], [4083, 2364]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116429, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4099, 2523], [4160, 2395], [4160, 2371], [4122, 2353], [4111, 2377], [4063, 2481], [4099, 2523]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116490, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 2799], [4160, 2752], [4084, 2662], [4043, 2749], [4160, 2799]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115348, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4107, 2995], [4160, 2856], [4160, 2853], [4114, 2833], [4059, 2977], [4107, 2995]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116664, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4132, 2561], [4160, 2502], [4160, 2395], [4099, 2523], [4132, 2561]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116492, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4138, 3007], [4160, 2949], [4160, 2856], [4107, 2995], [4138, 3007]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115364, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 3016], [4160, 2949], [4138, 3007], [4160, 3016]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 115363, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 2026], [4160, 1980], [4154, 1976], [4136, 2013], [4160, 2026]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117031, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4146, 2364], [4160, 2334], [4160, 2273], [4122, 2353], [4146, 2364]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116506, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4153, 2126], [4160, 2113], [4160, 2026], [4136, 2013], [4101, 2080], [4108, 2103], [4153, 2126]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117034, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4137, 1536], [4160, 1534], [4160, 1501], [4140, 1485], [4115, 1519], [4137, 1536]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116607, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1452], [4160, 1451], [4125, 1425], [4123, 1428], [4160, 1452]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171562, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4159, 1382], [4160, 1381], [4160, 1334], [4131, 1311], [4107, 1341], [4159, 1382]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116545, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1501], [4160, 1459], [4140, 1485], [4160, 1501]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116605, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1451], [4160, 1382], [4125, 1425], [4160, 1451]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116603, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 2130], [4160, 2113], [4153, 2126], [4160, 2130]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117043, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1980], [4160, 1964], [4154, 1976], [4160, 1980]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 117035, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 2371], [4160, 2334], [4146, 2364], [4160, 2371]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116508, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 2594], [4160, 2502], [4132, 2561], [4160, 2594]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116515, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 3124], [4160, 3096], [4127, 3106], [4160, 3124]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 155298, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1213], [4160, 1173], [4144, 1160], [4127, 1181], [4160, 1213]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116837, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3958, 1250], [4001, 1194], [3854, 1080], [3807, 1134], [3848, 1165], [3958, 1250]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116788, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4159, 1275], [4160, 1274], [4160, 1213], [4127, 1181], [4093, 1223], [4159, 1275]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116790, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4047, 1281], [4100, 1214], [4069, 1189], [4017, 1257], [4047, 1281]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116876, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3916, 1305], [3958, 1250], [3848, 1165], [3803, 1218], [3916, 1305]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116787, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1285], [4160, 1274], [4159, 1275], [4155, 1281], [4160, 1285]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116536, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4113, 1334], [4159, 1275], [4093, 1223], [4047, 1281], [4113, 1334]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116878, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[3992, 1351], [4047, 1281], [4017, 1257], [3963, 1328], [3992, 1351]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116875, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[4160, 1334], [4160, 1285], [4155, 1281], [4131, 1311], [4160, 1334]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116543, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1482, 3985], [1816, 3953], [1795, 3747], [1630, 3621], [1428, 3889], [1482, 3985]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81370, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1497, 4160], [1520, 4058], [1476, 4063], [1492, 4083], [1475, 4160], [1497, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72429, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1525, 4160], [1545, 4071], [1564, 4054], [1520, 4058], [1497, 4160], [1525, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75672, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1540, 3640], [1657, 3484], [1589, 3433], [1441, 3379], [1415, 3440], [1401, 3434], [1369, 3478], [1455, 3545], [1442, 3564], [1540, 3640]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71794, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1538, 1598], [1590, 1518], [1527, 1482], [1480, 1564], [1538, 1598]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9640, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1438, 1877], [1621, 1814], [1618, 1776], [1636, 1744], [1725, 1706], [1662, 1522], [1595, 1660], [1520, 1617], [1329, 1817], [1438, 1877]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116007, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1505, 1923], [1551, 1838], [1482, 1862], [1464, 1893], [1505, 1923]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116130, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1634, 2624], [1792, 2317], [1638, 2152], [1594, 2117], [1377, 2445], [1302, 2366], [1295, 2371], [1280, 2365], [1256, 2402], [1557, 2585], [1634, 2624]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 65489, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1464, 1893], [1482, 1862], [1438, 1877], [1464, 1893]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116131, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1465, 2103], [1500, 2048], [1513, 2028], [1483, 2007], [1435, 2089], [1465, 2103]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69727, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1473, 3056], [1494, 3012], [1467, 2999], [1496, 2944], [1475, 2933], [1423, 3032], [1473, 3056]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72419, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1435, 3010], [1558, 2772], [1524, 2769], [1364, 2681], [1265, 2862], [1240, 2920], [1435, 3010]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66608, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1445, 2134], [1465, 2103], [1369, 2058], [1353, 2091], [1445, 2134]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69443, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1424, 2168], [1445, 2134], [1353, 2091], [1337, 2126], [1424, 2168]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68897, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1402, 2201], [1424, 2168], [1337, 2126], [1319, 2163], [1402, 2201]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72157, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1369, 2058], [1416, 1954], [1404, 1946], [1379, 1998], [1355, 2052], [1369, 2058]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 68622, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1379, 1998], [1404, 1946], [1391, 1938], [1366, 1992], [1379, 1998]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69827, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1418, 1724], [1439, 1701], [1377, 1665], [1358, 1645], [1342, 1647], [1328, 1662], [1328, 1676], [1340, 1692], [1364, 1694], [1418, 1724]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116119, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1329, 1817], [1418, 1724], [1389, 1708], [1329, 1817]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116116, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1377, 1665], [1365, 1648], [1360, 1647], [1377, 1665]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221160, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1365, 1648], [1405, 1579], [1360, 1554], [1333, 1601], [1342, 1647], [1365, 1648]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116068, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1320, 1470], [1450, 1327], [1349, 1269], [1325, 1279], [1291, 1444], [1296, 1456], [1320, 1470]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8756, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1502, 1636], [1520, 1617], [1302, 1490], [1275, 1518], [1289, 1512], [1502, 1636]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116035, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1407, 1682], [1452, 1607], [1405, 1579], [1365, 1648], [1377, 1665], [1407, 1682]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116070, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1480, 1564], [1480, 1563], [1320, 1470], [1480, 1564]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221295, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1520, 1617], [1538, 1598], [1320, 1470], [1303, 1490], [1520, 1617]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 41, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1407, 1682], [1377, 1665], [1407, 1683], [1407, 1682]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221137, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1406, 2076], [1457, 1982], [1416, 1954], [1369, 2058], [1406, 2076]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69225, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1377, 2445], [1594, 2117], [1500, 2048], [1299, 2362], [1377, 2445]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66001, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1435, 2089], [1486, 2006], [1457, 1982], [1406, 2076], [1435, 2089]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 69654, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1439, 1701], [1502, 1636], [1452, 1607], [1407, 1683], [1439, 1701]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116121, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1480, 1563], [1574, 1399], [1450, 1327], [1320, 1470], [1480, 1563]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 309, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1437, 1135], [1467, 1058], [1425, 1041], [1393, 1117], [1437, 1135]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5074, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1424, 1168], [1437, 1135], [1393, 1117], [1380, 1149], [1424, 1168]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9149, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1400, 975], [1428, 907], [1388, 914], [1368, 961], [1400, 975]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5693, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1371, 1042], [1400, 975], [1368, 961], [1340, 1028], [1371, 1042]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5624, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1467, 1058], [1492, 992], [1453, 976], [1425, 1041], [1467, 1058]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4897, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1450, 1327], [1485, 1288], [1454, 1270], [1429, 1315], [1450, 1327]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11753, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1492, 992], [1509, 948], [1481, 938], [1499, 887], [1487, 895], [1453, 976], [1492, 992]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 4948, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1485, 1288], [1499, 1273], [1495, 1276], [1485, 1288]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221235, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1485, 1288], [1545, 1220], [1495, 1199], [1454, 1270], [1485, 1288]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12312, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1509, 948], [1536, 877], [1499, 887], [1481, 938], [1509, 948]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7034, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1504, 1299], [1549, 1222], [1485, 1288], [1504, 1299]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12367, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1544, 1002], [1594, 875], [1583, 868], [1536, 877], [1495, 983], [1544, 1002]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5839, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1629, 923], [1657, 851], [1599, 864], [1581, 907], [1629, 923]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6480, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1651, 1207], [1665, 1175], [1671, 1159], [1619, 1137], [1582, 1178], [1651, 1207]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5274, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1630, 1256], [1651, 1207], [1582, 1178], [1549, 1222], [1630, 1256]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11351, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1604, 988], [1629, 923], [1581, 907], [1557, 970], [1604, 988]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5487, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1594, 875], [1599, 864], [1583, 868], [1594, 875]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6635, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1590, 1348], [1630, 1256], [1549, 1222], [1504, 1299], [1590, 1348]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10872, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1585, 1516], [1583, 1514], [1527, 1482], [1585, 1516]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221297, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1598, 1663], [1608, 1639], [1538, 1598], [1520, 1617], [1598, 1663]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10203, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1538, 1598], [1554, 1581], [1590, 1518], [1538, 1598]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221133, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1673, 1456], [1691, 1437], [1642, 1409], [1655, 1386], [1485, 1288], [1450, 1327], [1673, 1456]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 108, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1554, 1582], [1605, 1527], [1590, 1518], [1554, 1582]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 12418, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1583, 1514], [1631, 1432], [1574, 1399], [1527, 1482], [1583, 1514]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9197, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1539, 1948], [1604, 1827], [1596, 1823], [1551, 1838], [1505, 1923], [1539, 1948]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116129, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1594, 2117], [1599, 2110], [1513, 2028], [1500, 2048], [1594, 2117]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71611, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1657, 3484], [1771, 3333], [1504, 3208], [1425, 3375], [1441, 3379], [1589, 3433], [1657, 3484]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73677, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1604, 1827], [1649, 1852], [1588, 1985], [1651, 1850], [1604, 1827]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221184, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1638, 2152], [1599, 2110], [1594, 2117], [1638, 2152]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 71721, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1588, 1985], [1649, 1852], [1604, 1827], [1539, 1948], [1588, 1985]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116126, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1608, 1639], [1662, 1523], [1648, 1482], [1538, 1598], [1608, 1639]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 9955, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1623, 1816], [1620, 1801], [1621, 1814], [1623, 1816]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221178, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1619, 1780], [1625, 1763], [1618, 1776], [1619, 1780]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221167, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1651, 1850], [1621, 1814], [1596, 1823], [1651, 1850]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116128, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1635, 1747], [1640, 1742], [1636, 1744], [1635, 1747]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221170, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1605, 1527], [1673, 1456], [1631, 1432], [1583, 1514], [1605, 1527]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10374, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1655, 1386], [1696, 1315], [1619, 1281], [1590, 1348], [1655, 1386]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10544, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1662, 1523], [1689, 1465], [1673, 1456], [1648, 1482], [1662, 1523]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10003, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1692, 1437], [1709, 1419], [1654, 1387], [1642, 1409], [1692, 1437]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116078, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1699, 1442], [1700, 1441], [1692, 1437], [1699, 1442]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221323, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1674, 1857], [1649, 1847], [1651, 1850], [1674, 1857]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221196, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1612, 2003], [1658, 1903], [1677, 1912], [1698, 1867], [1682, 1873], [1674, 1857], [1651, 1850], [1588, 1985], [1612, 2003]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116125, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1713, 3167], [1814, 2927], [1845, 2852], [1589, 2713], [1475, 2933], [1496, 2944], [1467, 2999], [1494, 3012], [1473, 3056], [1713, 3167]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66202, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1771, 3333], [1781, 3321], [1777, 3307], [1515, 3185], [1504, 3208], [1771, 3333]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72336, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1682, 1873], [1698, 1867], [1704, 1855], [1674, 1857], [1682, 1873]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116122, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1717, 1981], [1764, 1881], [1704, 1855], [1708, 1864], [1698, 1867], [1677, 1912], [1658, 1903], [1639, 1945], [1717, 1981]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116123, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1698, 1867], [1708, 1864], [1704, 1855], [1698, 1867]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116132, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1675, 1857], [1768, 1833], [1725, 1706], [1653, 1731], [1631, 1750], [1617, 1784], [1623, 1820], [1644, 1845], [1675, 1857]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116127, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1689, 1465], [1699, 1442], [1691, 1437], [1673, 1456], [1689, 1465]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10461, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1702, 1415], [1745, 1340], [1694, 1316], [1654, 1387], [1702, 1415]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116080, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1677, 1857], [1704, 1855], [1768, 1833], [1677, 1857]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221194, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1720, 1693], [1793, 1539], [1789, 1522], [1689, 1464], [1662, 1522], [1720, 1693]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116075, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1753, 1182], [1764, 1156], [1687, 1123], [1676, 1149], [1753, 1182]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5326, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1742, 1208], [1753, 1182], [1676, 1149], [1665, 1175], [1742, 1208]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 11421, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1722, 1254], [1742, 1208], [1665, 1175], [1645, 1221], [1722, 1254]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10996, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1639, 1001], [1671, 924], [1685, 931], [1726, 837], [1657, 851], [1604, 988], [1639, 1001]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6372, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1696, 1315], [1722, 1254], [1645, 1221], [1619, 1281], [1696, 1315]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 10927, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1671, 1159], [1699, 1094], [1669, 1081], [1619, 1137], [1671, 1159]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5719, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1764, 1156], [1787, 1104], [1709, 1071], [1687, 1123], [1764, 1156]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5768, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1770, 927], [1817, 818], [1726, 837], [1700, 897], [1770, 927]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6963, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1787, 1104], [1809, 1053], [1731, 1020], [1709, 1071], [1787, 1104]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5817, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1809, 1053], [1829, 1005], [1767, 972], [1731, 1020], [1809, 1053]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6192, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1866, 1085], [1918, 988], [1890, 974], [1839, 1070], [1866, 1085]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6349, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1892, 975], [1930, 900], [1866, 866], [1831, 943], [1892, 975]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6464, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1839, 1070], [1890, 974], [1822, 938], [1799, 989], [1829, 1005], [1809, 1053], [1839, 1070]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6298, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1767, 972], [1872, 853], [1908, 773], [1817, 818], [1754, 965], [1767, 972]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 454, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1771, 1353], [1969, 1143], [1809, 1054], [1694, 1316], [1771, 1353]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116015, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1799, 1471], [1846, 1388], [1798, 1470], [1799, 1471]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221328, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1867, 1398], [1890, 1372], [1854, 1264], [1771, 1353], [1867, 1398]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116073, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1821, 1962], [1873, 1943], [1863, 1911], [1881, 1905], [1878, 1895], [1874, 1885], [1805, 1914], [1821, 1962]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116134, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1874, 2032], [1919, 2001], [1882, 1894], [1878, 1895], [1881, 1905], [1863, 1911], [1873, 1943], [1821, 1962], [1805, 1914], [1797, 1917], [1815, 1969], [1874, 2032]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116133, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1846, 1497], [1895, 1411], [1846, 1388], [1799, 1471], [1846, 1497]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116081, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1747, 1772], [1995, 1687], [1904, 1416], [1895, 1411], [1846, 1497], [1856, 1526], [1745, 1766], [1747, 1772]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116011, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1904, 1416], [1890, 1372], [1867, 1398], [1895, 1411], [1904, 1416]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116082, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1904, 1416], [1899, 1397], [1890, 1372], [1904, 1416]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221337, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1899, 1397], [1904, 1391], [1910, 1348], [1890, 1372], [1899, 1397]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116086, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1912, 1419], [1904, 1391], [1899, 1397], [1904, 1416], [1912, 1419]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116084, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1302, 1490], [1283, 1478], [1291, 1444], [1291, 1440], [1260, 1465], [1244, 1544], [1192, 1796], [1299, 1889], [1314, 1896], [1351, 1915], [1391, 1938], [1404, 1946], [1416, 1954], [1457, 1982], [1486, 2006], [1485, 2009], [1513, 2028], [1599, 2110], [1638, 2152], [1774, 2298], [2167, 2636], [2269, 2717], [2317, 2744], [2407, 2784], [2547, 2842], [2565, 2812], [2482, 2773], [2342, 2721], [2256, 2665], [2220, 2626], [1894, 2273], [1712, 2077], [1612, 2003], [1588, 1985], [1539, 1948], [1505, 1923], [1464, 1893], [1438, 1877], [1329, 1817], [1283, 1796], [1250, 1781], [1232, 1774], [1225, 1758], [1236, 1704], [1248, 1645], [1261, 1584], [1275, 1518], [1283, 1479], [1302, 1490]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221310, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1900, 3097], [1910, 2956], [1893, 2972], [1876, 2963], [1900, 3097]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73797, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1930, 3268], [1900, 3097], [1889, 3249], [1930, 3268]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 73710, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1889, 3612], [1998, 3409], [1906, 3366], [1802, 3558], [1889, 3612]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75359, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1240, 2920], [1230, 2942], [1210, 2933], [1454, 3156], [1515, 3185], [1777, 3307], [1781, 3321], [1771, 3333], [1720, 3400], [1765, 3442], [1775, 3428], [1803, 3391], [1833, 3351], [1860, 3345], [1906, 3366], [1998, 3409], [2054, 3435], [2106, 3459], [2316, 3556], [2389, 3589], [2461, 3622], [2478, 3630], [2547, 3553], [2319, 3447], [2168, 3377], [2085, 3340], [2031, 3315], [1979, 3291], [1930, 3268], [1889, 3249], [1713, 3167], [1473, 3056], [1423, 3032], [1435, 3010], [1240, 2920]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 171570, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1867, 3439], [1906, 3366], [1860, 3345], [1833, 3351], [1803, 3391], [1867, 3439]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75588, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1845, 3479], [1867, 3439], [1803, 3391], [1775, 3428], [1845, 3479]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75467, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1889, 3249], [1900, 3097], [1876, 2963], [1814, 2927], [1713, 3167], [1889, 3249]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67874, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1823, 3520], [1845, 3479], [1775, 3428], [1748, 3465], [1823, 3520]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75413, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1876, 2776], [1983, 2524], [1792, 2317], [1634, 2624], [1626, 2640], [1876, 2776]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66051, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2600, 3385], [2694, 3249], [2639, 3208], [2664, 3173], [2518, 3054], [2391, 3029], [2216, 2917], [2196, 2903], [2199, 2896], [2028, 2824], [1973, 2828], [1626, 2640], [1634, 2624], [1557, 2585], [1256, 2402], [1046, 2338], [932, 2560], [1209, 2630], [1364, 2681], [1524, 2769], [1558, 2772], [1589, 2713], [1845, 2852], [1814, 2927], [1893, 2972], [1910, 2956], [2046, 3047], [2039, 3065], [2119, 3098], [2301, 3204], [2523, 3331], [2600, 3385]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 66111, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1800, 1528], [1851, 1513], [1846, 1497], [1798, 1470], [1762, 1506], [1800, 1528]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116087, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1798, 1470], [1846, 1388], [1795, 1364], [1751, 1443], [1798, 1470]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116072, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1745, 1766], [1856, 1526], [1851, 1513], [1800, 1528], [1789, 1522], [1793, 1539], [1720, 1693], [1745, 1766]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116074, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1829, 2203], [1908, 2128], [1855, 2071], [1885, 2044], [1815, 1969], [1768, 1833], [1704, 1855], [1764, 1881], [1717, 1981], [1639, 1945], [1612, 2003], [1712, 2077], [1829, 2203]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116034, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1751, 1443], [1795, 1364], [1771, 1353], [1709, 1419], [1751, 1443]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116076, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1762, 1506], [1798, 1470], [1709, 1419], [1692, 1437], [1700, 1441], [1689, 1464], [1762, 1506]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116077, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1709, 1419], [1771, 1353], [1745, 1340], [1702, 1415], [1709, 1419]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116079, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1802, 3558], [1823, 3520], [1748, 3465], [1717, 3505], [1802, 3558]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 75012, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1795, 3747], [1889, 3612], [1717, 3505], [1630, 3621], [1795, 3747]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 81425, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1936, 4160], [1933, 4108], [1744, 4127], [1747, 4158], [1729, 4160], [1936, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82874, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1816, 3953], [2079, 3927], [2139, 3800], [1889, 3612], [1795, 3747], [1816, 3953]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 82105, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1997, 3693], [2075, 3526], [1965, 3470], [1889, 3612], [1997, 3693]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76244, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1729, 4160], [1747, 4158], [1744, 4127], [1933, 4108], [1936, 4160], [2550, 4160], [2648, 3949], [1564, 4054], [1545, 4071], [1525, 4160], [1729, 4160]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 80670, 'type': 'Feature'}, {'geometry': {'type': 'MultiPolygon', 'coordinates': [[[[2178, 3827], [1997, 3693], [2139, 3800], [2178, 3827]]], [[[2178, 3827], [2179, 3828], [2181, 3823], [2180, 3822], [2178, 3827]]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 154380, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2075, 3526], [2106, 3459], [2054, 3435], [2035, 3481], [2017, 3498], [2075, 3526]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76194, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2198, 2896], [2249, 2785], [2186, 2749], [1983, 2524], [1876, 2776], [1973, 2828], [2028, 2824], [2198, 2896]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67328, 'type': 'Feature'}, {'geometry': {'type': 'MultiPolygon', 'coordinates': [[[[2078, 1956], [2078, 1948], [2073, 1954], [2076, 1953], [2078, 1956]]], [[[2081, 1959], [2107, 1992], [2109, 1989], [2081, 1959]]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221257, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2028, 1784], [2077, 1940], [2077, 1933], [2028, 1784]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221163, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2078, 1956], [2081, 1939], [2013, 1737], [2077, 1933], [2078, 1956]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116136, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2035, 1643], [2012, 1621], [2014, 1625], [2035, 1643]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221141, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2003, 2170], [2144, 2038], [2076, 1953], [1967, 1995], [1964, 1985], [1919, 2001], [1874, 2032], [2003, 2170]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116037, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1967, 1995], [2068, 1960], [2079, 1946], [1964, 1985], [1967, 1995]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116135, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2031, 3315], [2111, 3122], [2056, 3101], [1979, 3291], [2031, 3315]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 72567, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1979, 3291], [2056, 3101], [2111, 3122], [2121, 3099], [2039, 3065], [2046, 3047], [1910, 2956], [1900, 3097], [1930, 3268], [1979, 3291]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 67206, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2017, 3498], [2035, 3481], [2054, 3435], [1998, 3409], [1965, 3470], [2017, 3498]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 76142, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1894, 2273], [2003, 2170], [1885, 2044], [1855, 2071], [1908, 2128], [1829, 2203], [1894, 2273]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116124, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1919, 2001], [2079, 1946], [2013, 1737], [1995, 1687], [1747, 1772], [1797, 1917], [1874, 1885], [1919, 2001]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116036, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1950, 1437], [1934, 1386], [1936, 1367], [1947, 1347], [1904, 1391], [1912, 1419], [1950, 1437]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116085, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1947, 1347], [1940, 1359], [1963, 1330], [1947, 1347]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221247, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1938, 1397], [1938, 1364], [1936, 1367], [1934, 1386], [1938, 1397]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221334, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1990, 1674], [2066, 1647], [2035, 1643], [2014, 1625], [1950, 1437], [1904, 1416], [1990, 1674]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116083, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1982, 869], [2061, 698], [2006, 671], [1970, 720], [1981, 730], [1929, 843], [1982, 869]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 509, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2000, 1032], [2041, 952], [1990, 927], [1950, 1006], [2000, 1032]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7279, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1950, 1006], [1990, 927], [1988, 926], [1950, 1006]]]}, 'properties': {'insee_code': '92063', 'forfait_mode': 1}, 'id': 221223, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1966, 1141], [2018, 1041], [1964, 1013], [1913, 1111], [1966, 1141]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7229, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1953, 792], [1981, 730], [1970, 720], [1910, 772], [1953, 792]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7926, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1960, 915], [1982, 869], [1929, 843], [1908, 889], [1960, 915]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8777, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1950, 1006], [1988, 926], [1930, 900], [1892, 975], [1950, 1006]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6912, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1890, 1372], [2017, 1228], [1949, 1164], [1854, 1264], [1890, 1372]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116044, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1913, 1111], [1964, 1013], [1918, 988], [1866, 1085], [1913, 1111]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 6864, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1929, 843], [1953, 792], [1908, 773], [1886, 822], [1929, 843]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7567, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1966, 1141], [2048, 1057], [2018, 1041], [1966, 1141]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7631, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2017, 1169], [2067, 1067], [2048, 1057], [1968, 1142], [2017, 1169]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 5924, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2061, 961], [2082, 919], [2007, 884], [1988, 926], [2061, 961]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 8959, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2061, 698], [2112, 586], [2070, 569], [2045, 580], [2006, 671], [2061, 698]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 798, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1988, 926], [2139, 597], [2112, 586], [1960, 915], [1988, 926]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 218, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2082, 919], [2106, 869], [2030, 833], [2007, 884], [2082, 919]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7494, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2048, 1057], [2097, 1006], [2108, 983], [2041, 952], [2000, 1032], [2048, 1057]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7686, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2067, 1067], [2097, 1006], [2048, 1057], [2067, 1067]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 7763, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2017, 1228], [2224, 995], [2200, 925], [2161, 937], [2113, 989], [2022, 1172], [1969, 1143], [1949, 1164], [2017, 1228]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116016, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[1904, 1391], [1963, 1330], [2121, 1165], [2266, 1120], [2239, 1041], [2240, 1070], [2226, 1093], [2105, 1140], [2017, 1228], [1910, 1348], [1904, 1391]]]}, 'properties': {'insee_code': '92040', 'forfait_mode': 1}, 'id': 116013, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2106, 869], [2151, 776], [2073, 741], [2030, 833], [2106, 869]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 679, 'type': 'Feature'}, {'geometry': {'type': 'Polygon', 'coordinates': [[[2081, 508], [2112, 409], [2116, 397], [2073, 384], [2061, 484], [2074, 505], [2081, 508]]]}, 'properties': {'insee_code': '92023', 'forfait_mode': 1}, 'id': 34910, 'type': 'Feature'}], 'type': 'FeatureCollection'}} \ No newline at end of file