{
"tiddlers": {
"$:/plugins/sycom/leaflet/devDiary": {
"created": "20151110173416000",
"modified": "20170317163000000",
"title": "$:/plugins/sycom/leaflet/devDiary",
"type": "text/vnd.tiddlywiki",
"text": "Some notes about coding this plugin. Might be useful to others...\n\n* 20170317\r\n** lot of work around cluster size, cluster color when using filter. Cluster size depends on point % for the cluster, clusterRadius and zoom.\r\n* 20170311\r\n** added styling options and also the grouping tiddler capabilities. Discovered that direct styling in SVG ''does not always'' [[overwrite css styling|http://stackoverflow.com/questions/24293880/svg-why-does-external-css-override-inline-style-for-text]].\r\n* 20170129\r\n** adding some markers. And it's possible to create yours.\r\n* 20170115\r\n** darling birthday edit. Clustering by tiddler is on track. Will have to look for clustering direct passing object through widget.\r\n* 20161111\r\n** armistice edit! can now disable clustering or set clustering distance. Bug #9 fixed. may be cluster size will be too big for big databases\r\n* 20161106\r\n** color parameter is partially implemented. Note that direct styling like `fill` in svg element wont take on class styling through css...\r\n* 20161104\r\n** after many attemps, managed to include tiddler excerpt in popups for mapping geoTiddler. Had to include an escape rule for tiddler containing a leafmap widget. No larsen, but a big bug (map number probably).\r\n** also managed to give the marker the color of the primary color. Note for later there is probably a bug if primary color is defined with `<<colour>>` macro.\r\n* 20161102\r\n** ok, when importing some library, don't forget to use `require()` in order to conclude. Silly guy. Still some polishing needed, but clustering know works...\r\n* 20161101\r\n** fighting with markercluster capabilities. At this point seems I can add the script but the MarkerClusterGroup class is not recognized when called...\r\n* 20161031\r\n** gave up inserting external layers.svg in stylesheet. Issues with `<$text />` and `{{ }}`... Created svg in a separate tiddler for the record but inserting directly an \"escaped\" version in [[mapCss.css|$:/plugins/sycom/leaflet/mapCssTweaks.css.tid]]\r\n* 20161030\r\n** working on different markers. Not so good at designing them though ;-) Putted default leaflet svg marker. Using Inkscape to edit svg easily and SVGO extension in atom to compress them. First attempt to put layers icon as svg. Issues...\r\n* 20161029\r\n** trying to put svg marker instead of png ones. Will be better for changing colors, content... using data:image/svg+xml. Svg has to bring xmlns ~~and xmlns:xlink~~ with it in order to work...\r\n* 20161025\r\n** after big fight, managed to call images as embeded through css without writing full base64 code. Had to add `html` to the \"rules only\" list at the beginning of the css code\r\n* 20161024\r\n** geojson implemented. Will need to add cluster soon. Some question about geojson attributes to create the popup...\r\n* 20161021\r\n** updated leaflet.js to 1.0.1 moved base64 image to mapCss.css in order to avoid problems when updating leaflet.\r\n** Updated tileLayer list. min/max checked for this time. Detect if tile id is wrong to alert user and display osm instead.\r\n* 20160314\r\n** corrected caption errors for example and roadmap. Have to write an install process in demo site (gh-page) since writing this in plugin is nonsense.\r\n* 20151124\r\n** wondering the best way to release plugin code in gitlab (or github). Can't be a fork of TiddlyWiki. Don't want to lose .git history.\r\n** ok I'm dumb. All is written in the dev TiddlyWiki : http://tiddlywiki.com/dev/#Developing%20p lugins%20using%20Node.js%20and%20GitHub . Lost .git history since cuting tree is bad. But history was still short...\r\n* 20151123\r\n** not able to use directly tiddler stored images as css background.\r\n** decided to use base64 form in css. Not so elegant as I wished, but works.\r\n* 20151121\r\n** fighting with parameters : not imported from widget with `this.getAttribute()`\r\n** solved by adding the parameter computation before : `this.computeAttributes();`\r\n* 20151115\r\n** some problems to declare leaflet.js library : fail during build since there is no window, no document.\r\n** solved by creating the tiddlywiki.files importer.\r\n* 20151110\r\n** starting some tests. Inspiration from d3plugin (also creating widget and importing library)\r\n"
},
"$:/plugins/sycom/leaflet/geoSyntax": {
"created": "20151119173416239",
"modified": "20151211173250584",
"title": "$:/plugins/sycom/leaflet/geoSyntax",
"type": "text/vnd.tiddlywiki",
"caption": "geoSyntax",
"text": "Geographical objects can be stored\n\n* in a GeoTiddler by creating a ''//type// : // pattern//'' metadata field pair in any tiddler or by storing geoJson data in it and setting your tiddler to `application/JSON` type. Call it in the widget with ''places'' attribute : `places='{\"tiddler\":\"title of your tiddler\"}'`\r\n* in several [[GeoTiddlers|GeoTiddler]]. Call them in the widget with ''places'' attribute\r\n** via a space separated list of [[GeoTiddlers|GeoTiddler]] : `places='{\"tiddlers\":\"tiddler1 tiddler2 tiddler3\"}'`\r\n** via a [[filter|http://tiddlywiki.com/#Filters]] selection of [[GeoTiddlers|GeoTiddler]] : `places='{\"filter\":\"[[your filter]]\"}'`\r\n* straight in the widget with ''places'' attribute : `places='{\"object type\":\"coordinates pattern\"}'`\n\n!! Everything might be a GeoTiddler\n\nIn a very much tiddlywiki way, a tiddler may also refer to a list or a selection of tiddlers using `tiddlers` or `filter` metadata fields. You may add styling informations to all refered tiddler with `style`, `color` or `marker` metadata fields. Calling this tiddler with `<$leafmap />` will render all refered tiddlers.\n\n!! Tool for creating shapes\r\nAs not everyone has a GIS in his head, And the plugin does not implement yet any tool for creating geo shapes, there is (very basic) tool for that : [ext[Draw for TiddlyWiki leaflet plugin|http://sycom.github.io/TiddlyWiki-Plugins/leafletDraw.html]]\n\n!! Geographical objects you can display on your map\n\n| !type | !description | !pattern |\r\n|''point'' |a unique point defined by a comma separated latitude,longitude pair |`y,x` |\r\n|''points''|a points collection defined by a space separated ''point'' definition list |`y1,x1 y2,x2 y3,x3 ...` |\r\n|''polygon''|a closed surfacic place defined like an //ordered// ''points'' collection just above |`y1,x1 y2,x2 y3,x3 ...` |\r\n|''polygons''|a polygons collection defined by a pipe (`|`) separated list of ''polygon'' definitions |`y1,x1 y2,x2 y3,x3|y4,x4 y5...` |\r\n|''polyline''|an open path place defined like the ''polygon'' just above |`y1,x1 y2,x2 y3,x3 ...` |\r\n|''polylines''|a polylines collection defined by a pipe (`|`) separated list of ''polyline'' definitions |`y1,x1 y2,x2 y3,x3|y4,x4 y5...` |\r\n|''geojson''|a [[geojson|http://geojson.org/]] object. If set through a tiddler field, please crunch it to one single line|see [[rfc7946|https://tools.ietf.org/html/rfc7946]]|\r\n"
},
"GeoTiddler": {
"created": "20151130173416239",
"modified": "20170115153450584",
"title": "GeoTiddler",
"type": "text/vnd.tiddlywiki",
"text": "[[GeoTiddler]]s are tiddlers containing geographical data. [[geoSyntax|$:/plugins/sycom/leaflet/geoSyntax]] lists the available objects. [[geoJson|https://en.wikipedia.org/wiki/GeoJSON]] data are also accepted. You may specify a color for all objects displayed through `color` field.\n\n!! tiddler with geo TiddlerFields\r\nYou can upgrade your tiddler by putting some geo metadata ([[wgs 84 coordinates|https://en.wikipedia.org/wiki/World_Geodetic_System#WGS84]]) in it's TiddlerFields. See [[geoSyntax|$:/plugins/sycom/leaflet/geoSyntax]] for the list of object types you can draw. Popup will show the first part of the tiddler. If the tiddler contains a leafmap widget, it will be rendered as `text/plain` in order to avoid crash...\n\n!! geoJSON tiddler\r\nYou can define a geoJson tiddler like [[tiddlyWikiFrCommunity|$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity]] and then display the data by calling it. Just put your geoJson data in the body and declare the tiddler as application/json. Any `application/json` tiddler called will be considered as geoJson. The popups will show\n\n* a title\r\n** the `name` or the `title` attribute in properties if exists,\r\n** if not, the firsts attributes of properties until they are 8 characters long\r\n* a description\r\n** the `description` attribute in properties if exists,\r\n** if not, the data stored in each feature as a bulleted list.\n\n!! tiddler grouping [[GeoTiddler]]s\r\nYou can use `tiddlers` or `filter` as TiddlerFields to make a group of tiddlers. You can apply some styling options to all the group using `style`, `color` or `marker` TiddlerFields and then call the tiddler in your map to render all those tiddler at the same time. This will be a good way to make thematic maps indeed...\r\n"
},
"$:/plugins/sycom/leaflet/markers": {
"created": "20170129172401910",
"modified": "20170129172401910",
"title": "$:/plugins/sycom/leaflet/markers",
"type": "text/vnd.tiddlywiki",
"caption": "Markers",
"text": "markers are used to display point(s) related informations. Default marker is [[marker|$:/plugins/sycom/leaflet/images/marker.svg]].\n\n!! Available markers\n\nfor now, available markers are those\n\n<$list filter='[all[shadows]has[marker_dim]has[caption]]'><span style=\"display:inline-block;text-align:center;margin:0 .5em;padding:.5em;border:.5px dotted\"><$tiddler tiddler={{!!title}}><$transclude/></$tiddler><br/><$link to={{!!title}}>{{!!caption}}</$link></span></$list>\n\n!! Create your own markers\n\nHave a look at existing ones above for inspiration and hack. Markers are svg pieces with some mandatory tweaks :\n\n* a marker is based upon ''two'' tiddlers, one for the marker and one for the shadow\r\n* add a `caption` field to the marker tiddler (not for the shadow svg).\r\n* the `title` of your marker tiddler will be `$:/plugins/sycom/leaflet/images/`''caption''`.svg`\r\n* and the `title` of the marker shadow tiddler will be `$:/plugins/sycom/leaflet/images/`''caption''`shadow.svg`\r\n* a `marker_dim` field wich defines //width// //height// //x-anchor// //y-anchors//. Please check that your //width// and //height// value are the same as in `<svg (...) width=\"15\" height=\"15\">`\r\n* don't forget to add `xmlns` attribute : `<svg xmlns=\"http://www.w3.org/2000/svg\" (...)`\r\n* if you want your marker to change color upon tiddlywiki or widget parameters, use `$primary$` for the color attribute of your svg\r\n"
},
"$:/plugins/sycom/leaflet/roadmap": {
"created": "20151209173416000",
"modified": "20170129153450000",
"title": "$:/plugins/sycom/leaflet/roadmap",
"type": "text/vnd.tiddlywiki",
"caption": "Roadmap",
"text": "Not really a roadmap just a list for future development ideas. You'd better take a look at [[issues|https://framagit.org/sycom/TiddlyWikiPlugins/boards]] on the repo. And add yours if you dare ;-)\n\n* add a tool to draw shapes, lines and collect coordinates. Until this, You may use [[Draw for TiddlyWiki leaflet plugin|http://sycom.github.io/TiddlyWiki-Plugins/leafletDraw.html]]\r\n* add categories options\r\n* add text, title capabilities\r\n* ...\n\n* ~~try to put other types of pins (svg? icons?)~~ ''0.8.0'' : you may change markers via the //marker// option and design your own markers\r\n* ~~add color(s) options~~ ''0.7.2'' : color can be set via //color// tiddler field or forced through //color// option\r\n* ~~add a clustering functionality (at least for points)~~ ''0.7.0'' : each data group is know clustering points\r\n* ~~add geoJSON tiddlers~~ ''0.6.0'' : added geojsontiddler rendering\r\n* ~~map tiddlers with the same tag(s)~~ ''0.5.0'' : added filter places request\r\n"
},
"$:/plugins/sycom/leaflet/tileLayers": {
"created": "20151119173416239",
"modified": "20161020222250584",
"title": "$:/plugins/sycom/leaflet/tileLayers",
"type": "text/vnd.tiddlywiki",
"caption": "tileLayers",
"text": "tileLayers are the //background// of the leaflet map. They will not be available offline and will not display at every zoom level.\n\n!! Available tile layers\n\nedit [[tileLayers.json|$:/plugins/sycom/leaflet/lib/tileLayers.json]] if you want to add / remove tile layers.\n\n| !id | !description | !zoom min/max |\r\n|''osm'' |[[OpenStreetMap|http://openstreetmap.org]] classic tile layer | 1/20 |\r\n|''osmfr'' |[[OpenStreetMap|http://openstreetmap.org]] with //baguette// smell | 1/20 |\r\n|''osmbw'' |Black and White version of [[OpenStreetMap|http://openstreetmap.org]] tiles by Wikimedia labs | 1/20 |\r\n|''sat'' |Satellite photographic layer provided by Esri | 1/18 |\r\n|''natgeo'' |National Geographic style layer provided by Esri| 1/12 |\r\n|''toner'' |Black and white styled OpenStreetMap data provided by [[Stamen|http://stamen.com]] | 1/20 |\r\n|''water'' |Watercolor styled OpenStreetMap data provided by [[Stamen|http://stamen.com]] | 1/20 |\r\n|''thunder'' |Pale styled OpenStreetMap data provided by [[Thunderforest|http://thunderforest.com]] | 1/20 |\r\n|''dark'' |\"Dark Matter\" styled OpenStreetMap data provided by [[CartoDB|https://cartodb.com/basemaps]] | 1/20 |\r\n|''positron'' |\"Positron\" styled OpenStreetMap data provided by [[CartoDB|https://cartodb.com/basemaps]] | 1/20 |\r\n"
},
"$:/plugins/sycom/leaflet/usage": {
"created": "20151119173416239",
"modified": "20170129153650584",
"title": "$:/plugins/sycom/leaflet/usage",
"type": "text/vnd.tiddlywiki",
"caption": "Usage",
"text": "The widget is called by using `<$leafmap />`. You may specify some options :\n\n!!! widget attributes\r\n|!Attribute |!Description |!Default |\r\n|''width'' |the width of the map (px or tiddler %)| `100%`|\r\n|''height''|the height of the map (px only)| `420px`|\n\n!!! leaflet map attributes\r\n|!Attribute |!Description |!Default |\r\n|''places'' |a json object with the geographical data you want to display. Can be stored in tiddlers as metadata fields. See [[geoSyntax|$:/plugins/sycom/leaflet/geoSyntax]] for more informations ||\r\n|''style'' |a json object containing styling information for your polygons and polylines objects in the map. Will overwrite GeoTiddler style if exists. Refer to [[leaflet documentation|http://leafletjs.com/reference-1.0.3.html#path]] for all options| `{ }`|\r\n|''color'' |a color for drawing that will apply to all objects in the map. Will also overwrite GeoTiddler color attributes and //style// (if defined) colors| `<<colour primary>>`|\r\n|''marker''|the name of the marker you want for points. See [[markers|$:/plugins/sycom/leaflet/markers]] for more informations| `marker`|\r\n|''tile'' |the //id// or the //number// of the tile layer you want to use. See [[tileLayers|$:/plugins/sycom/leaflet/tileLayers]] for more informations | `osm`|\r\n|''cluster''|set the clustering distance between points. also can disable clustering with no value or `0` or `\"\"`| `80`|\r\n|''clusterType''|set if points are clustered for whole map (`map`) or for each tiddler (`tiddler`) displayed.| `map`|\r\n|''tileControl'' |''if present'' add a control to select the tile layer you want ||\r\n|''lat'' |map center latitude. Will overwrite places auto-centering | `52.8`|\r\n|''long'' |map center longitude. Will overwrite places auto-centering | `-2.6`|\r\n|''zoom'' |zoom level as defined by leaflet : int value between `0` (world map) and `20` (ant view) | |\r\n"
},
"test de GROS fichier geojson": {
"created": "20161025143416000",
"modified": "20161025143416000",
"title": "test de GROS fichier geojson",
"type": "application/json",
"tags": "example leaflet geojson",
"text": "{\r\n\"type\":\"FeatureCollection\",\r\n\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"urn:ogc:def:crs:OGC:1.3:CRS84\"}},\r\n\"features\":[\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8,\"INSEE_Comm\":\"80136\",\"nomCom\":\"Bray-sur-Somme\",\"NOM_COM\":\"BRAY-SUR-SOMME\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72157,49.95491]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15,\"INSEE_Comm\":\"14611\",\"nomCom\":\"Saint-Manvieu-Bocage\",\"NOM_COM\":\"SAINT-MANVIEU-BOCAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.96492,48.82168]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29,\"INSEE_Comm\":\"14522\",\"nomCom\":\"Pr�treville\",\"NOM_COM\":\"PRETREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25863,49.07222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30,\"INSEE_Comm\":\"14462\",\"nomCom\":\"Neuilly-la-For�t\",\"NOM_COM\":\"NEUILLY-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.08917,49.27142]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":58,\"INSEE_Comm\":\"27016\",\"nomCom\":\"Andelys\",\"NOM_COM\":\"LESANDELYS\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":293,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42805,49.24591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":101,\"INSEE_Comm\":\"14403\",\"nomCom\":\"Marolles\",\"NOM_COM\":\"MAROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.36903,49.13786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":109,\"INSEE_Comm\":\"28282\",\"nomCom\":\"Nonvilliers-Grandhoux\",\"NOM_COM\":\"NONVILLIERS-GRANDHOUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14564,48.33966]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":112,\"INSEE_Comm\":\"61040\",\"nomCom\":\"Bellou-en-Houlme\",\"NOM_COM\":\"BELLOU-EN-HOULME\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4441,48.69102]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":117,\"INSEE_Comm\":\"14346\",\"nomCom\":\"Juaye-Mondaye\",\"NOM_COM\":\"JUAYE-MONDAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.69082,49.20506]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":123,\"INSEE_Comm\":\"76472\",\"nomCom\":\"Notre-Dame-d'Aliermont\",\"NOM_COM\":\"NOTRE-DAME-D'ALIERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29794,49.84522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":126,\"INSEE_Comm\":\"80416\",\"nomCom\":\"Hangest-sur-Somme\",\"NOM_COM\":\"HANGEST-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03811,49.97923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":127,\"INSEE_Comm\":\"76344\",\"nomCom\":\"Haudricourt\",\"NOM_COM\":\"HAUDRICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69688,49.73266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":158,\"INSEE_Comm\":\"60350\",\"nomCom\":\"Lassigny\",\"NOM_COM\":\"LASSIGNY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84367,49.59998]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":183,\"INSEE_Comm\":\"61027\",\"nomCom\":\"Batilly\",\"NOM_COM\":\"BATILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17979,48.72578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":186,\"INSEE_Comm\":\"61158\",\"nomCom\":\"Faverolles\",\"NOM_COM\":\"FAVEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28919,48.66912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":199,\"INSEE_Comm\":\"76320\",\"nomCom\":\"Grandcourt\",\"NOM_COM\":\"GRANDCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4853,49.91685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":201,\"INSEE_Comm\":\"80802\",\"nomCom\":\"Villers-Faucon\",\"NOM_COM\":\"VILLERS-FAUCON\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.1065,49.97702]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":248,\"INSEE_Comm\":\"76495\",\"nomCom\":\"Pavilly\",\"NOM_COM\":\"PAVILLY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":205,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94726,49.5759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":252,\"INSEE_Comm\":\"27527\",\"nomCom\":\"Saint-Cyr-de-Salerne\",\"NOM_COM\":\"SAINT-CYR-DE-SALERNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65344,49.18555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":255,\"INSEE_Comm\":\"61427\",\"nomCom\":\"Saint-Martin-l'Aiguillon\",\"NOM_COM\":\"SAINT-MARTIN-L'AIGUILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17991,48.60281]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":256,\"INSEE_Comm\":\"61015\",\"nomCom\":\"Aunou-sur-Orne\",\"NOM_COM\":\"AUNOU-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23823,48.60578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":270,\"INSEE_Comm\":\"14102\",\"nomCom\":\"Breuil-en-Auge\",\"NOM_COM\":\"LEBREUIL-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21874,49.22778]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":271,\"INSEE_Comm\":\"76321\",\"nomCom\":\"Grandes-Ventes\",\"NOM_COM\":\"LESGRANDES-VENTES\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":59,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23463,49.77147]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":272,\"INSEE_Comm\":\"80177\",\"nomCom\":\"Cartigny\",\"NOM_COM\":\"CARTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01727,49.90869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":297,\"INSEE_Comm\":\"80570\",\"nomCom\":\"Moreuil\",\"NOM_COM\":\"MOREUIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":93,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48423,49.77623]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":301,\"INSEE_Comm\":\"76507\",\"nomCom\":\"Ponts-et-Marais\",\"NOM_COM\":\"PONTS-ET-MARAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45639,50.03879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":309,\"INSEE_Comm\":\"80071\",\"nomCom\":\"Beauval\",\"NOM_COM\":\"BEAUVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32863,50.10792]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":336,\"INSEE_Comm\":\"61439\",\"nomCom\":\"Saint-Ouen-le-Brisoult\",\"NOM_COM\":\"SAINT-OUEN-LE-BRISOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35073,48.50918]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":340,\"INSEE_Comm\":\"14422\",\"nomCom\":\"Mesnil-Mauger\",\"NOM_COM\":\"LEMESNIL-MAUGER\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0109,49.0768]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":341,\"INSEE_Comm\":\"61490\",\"nomCom\":\"Tournai-sur-Dive\",\"NOM_COM\":\"TOURNAI-SUR-DIVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04406,48.81065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":348,\"INSEE_Comm\":\"27065\",\"nomCom\":\"Beuzeville\",\"NOM_COM\":\"BEUZEVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":601,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34267,49.33801]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":352,\"INSEE_Comm\":\"76652\",\"nomCom\":\"Saint-Vaast-d'�quiqueville\",\"NOM_COM\":\"SAINT-VAAST-D'EQUIQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26092,49.81528]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":353,\"INSEE_Comm\":\"60217\",\"nomCom\":\"Escames\",\"NOM_COM\":\"ESCAMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80576,49.55656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":354,\"INSEE_Comm\":\"60616\",\"nomCom\":\"S�rifontaine\",\"NOM_COM\":\"SERIFONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":169,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79376,49.3615]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":385,\"INSEE_Comm\":\"61102\",\"nomCom\":\"Ch�tellier\",\"NOM_COM\":\"LECHATELLIER\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58306,48.67774]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":392,\"INSEE_Comm\":\"80211\",\"nomCom\":\"Conty\",\"NOM_COM\":\"CONTY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14459,49.75033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":394,\"INSEE_Comm\":\"76648\",\"nomCom\":\"Saint-Sa�ns\",\"NOM_COM\":\"SAINT-SAENS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2773,49.67455]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":413,\"INSEE_Comm\":\"76116\",\"nomCom\":\"Boos\",\"NOM_COM\":\"BOOS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":214,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2029,49.38092]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":430,\"INSEE_Comm\":\"14593\",\"nomCom\":\"Saint-Hymer\",\"NOM_COM\":\"SAINT-HYMER\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1674,49.24329]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":435,\"INSEE_Comm\":\"27467\",\"nomCom\":\"Pont-Audemer\",\"NOM_COM\":\"PONT-AUDEMER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":734,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53388,49.34639]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":436,\"INSEE_Comm\":\"60198\",\"nomCom\":\"Dives\",\"NOM_COM\":\"DIVES\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.87856,49.59094]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":460,\"INSEE_Comm\":\"76260\",\"nomCom\":\"Ferri�res-en-Bray\",\"NOM_COM\":\"FERRIERES-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75819,49.48624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":484,\"INSEE_Comm\":\"61061\",\"nomCom\":\"Bretoncelles\",\"NOM_COM\":\"BRETONCELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9007,48.43585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":485,\"INSEE_Comm\":\"61115\",\"nomCom\":\"Condeau\",\"NOM_COM\":\"CONDEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82493,48.37177]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":490,\"INSEE_Comm\":\"27116\",\"nomCom\":\"Brionne\",\"NOM_COM\":\"BRIONNE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":223,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71216,49.18784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":494,\"INSEE_Comm\":\"61314\",\"nomCom\":\"Occagnes\",\"NOM_COM\":\"OCCAGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6139\",\"nomCan\":\"Argentan-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.06575,48.78131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":497,\"INSEE_Comm\":\"61504\",\"nomCom\":\"Villebadin\",\"NOM_COM\":\"VILLEBADIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.155,48.77718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":504,\"INSEE_Comm\":\"78356\",\"nomCom\":\"Magny-les-Hameaux\",\"NOM_COM\":\"MAGNY-LES-HAMEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":374,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.0525,48.74089]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":510,\"INSEE_Comm\":\"14577\",\"nomCom\":\"Saint-Gabriel-Br�cy\",\"NOM_COM\":\"SAINT-GABRIEL-BRECY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57093,49.27079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":511,\"INSEE_Comm\":\"14578\",\"nomCom\":\"Saint-Gatien-des-Bois\",\"NOM_COM\":\"SAINT-GATIEN-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18687,49.35081]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":512,\"INSEE_Comm\":\"80318\",\"nomCom\":\"Flixecourt\",\"NOM_COM\":\"FLIXECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":107,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07965,50.01032]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":513,\"INSEE_Comm\":\"60317\",\"nomCom\":\"Hondainville\",\"NOM_COM\":\"HONDAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30835,49.34479]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":514,\"INSEE_Comm\":\"60668\",\"nomCom\":\"Verderel-l�s-Sauqueuse\",\"NOM_COM\":\"VERDEREL-LES-SAUQUEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08163,49.5067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":516,\"INSEE_Comm\":\"80086\",\"nomCom\":\"Bernaville\",\"NOM_COM\":\"BERNAVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17572,50.13494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":518,\"INSEE_Comm\":\"76462\",\"nomCom\":\"Neufch�tel-en-Bray\",\"NOM_COM\":\"NEUFCHATEL-EN-BRAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":155,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44657,49.74025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":529,\"INSEE_Comm\":\"28046\",\"nomCom\":\"Boissy-l�s-Perche\",\"NOM_COM\":\"BOISSY-LES-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90189,48.68062]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":538,\"INSEE_Comm\":\"14730\",\"nomCom\":\"Vaudry\",\"NOM_COM\":\"VAUDRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.84436,48.85387]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":555,\"INSEE_Comm\":\"61242\",\"nomCom\":\"Mage\",\"NOM_COM\":\"LEMAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81351,48.50471]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":557,\"INSEE_Comm\":\"61302\",\"nomCom\":\"Neauphe-sur-Dive\",\"NOM_COM\":\"NEAUPHE-SUR-DIVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0956,48.85151]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":567,\"INSEE_Comm\":\"14711\",\"nomCom\":\"Tr�vi�res\",\"NOM_COM\":\"TREVIERES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.91606,49.29915]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":568,\"INSEE_Comm\":\"80001\",\"nomCom\":\"Abbeville\",\"NOM_COM\":\"ABBEVILLE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"8098\",\"nomCan\":\"Abbeville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":109,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83209,50.10836]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":594,\"INSEE_Comm\":\"61387\",\"nomCom\":\"Saint-Fraimbault\",\"NOM_COM\":\"SAINT-FRAIMBAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.71154,48.49875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":604,\"INSEE_Comm\":\"61126\",\"nomCom\":\"Coulonges-sur-Sarthe\",\"NOM_COM\":\"COULONGES-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39507,48.52991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":611,\"INSEE_Comm\":\"61451\",\"nomCom\":\"Saint-Quentin-les-Chardonnets\",\"NOM_COM\":\"SAINT-QUENTIN-LES-CHARDONNETS\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75113,48.78307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":644,\"INSEE_Comm\":\"60104\",\"nomCom\":\"Breteuil\",\"NOM_COM\":\"BRETEUIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":195,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29183,49.63404]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":664,\"INSEE_Comm\":\"78516\",\"nomCom\":\"Raizeux\",\"NOM_COM\":\"RAIZEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68907,48.63561]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":682,\"INSEE_Comm\":\"14614\",\"nomCom\":\"Sainte-Marguerite-d'Elle\",\"NOM_COM\":\"SAINTE-MARGUERITE-D'ELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.98657,49.21557]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":686,\"INSEE_Comm\":\"28037\",\"nomCom\":\"B�rou-la-Muloti�re\",\"NOM_COM\":\"BEROU-LA-MULOTIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07282,48.74065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":719,\"INSEE_Comm\":\"61144\",\"nomCom\":\"Danc�\",\"NOM_COM\":\"DANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76041,48.36525]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":732,\"INSEE_Comm\":\"27628\",\"nomCom\":\"Thevray\",\"NOM_COM\":\"THEVRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71937,48.97689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":736,\"INSEE_Comm\":\"60612\",\"nomCom\":\"Senlis\",\"NOM_COM\":\"SENLIS\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":134,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58568,49.21181]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":756,\"INSEE_Comm\":\"28393\",\"nomCom\":\"Tremblay-les-Villages\",\"NOM_COM\":\"TREMBLAY-LES-VILLAGES\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":128,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36867,48.58816]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":760,\"INSEE_Comm\":\"14471\",\"nomCom\":\"Notre-Dame-de-Courson\",\"NOM_COM\":\"NOTRE-DAME-DE-COURSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26836,49.00089]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":786,\"INSEE_Comm\":\"28001\",\"nomCom\":\"Abondant\",\"NOM_COM\":\"ABONDANT\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":122,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42002,48.79506]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":795,\"INSEE_Comm\":\"80618\",\"nomCom\":\"Pend�\",\"NOM_COM\":\"PENDE\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58413,50.16111]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":804,\"INSEE_Comm\":\"61404\",\"nomCom\":\"Saint-Hilaire-le-Ch�tel\",\"NOM_COM\":\"SAINT-HILAIRE-LE-CHATEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54029,48.55513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":808,\"INSEE_Comm\":\"61228\",\"nomCom\":\"Livaie\",\"NOM_COM\":\"LIVAIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03853,48.50764]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":862,\"INSEE_Comm\":\"28088\",\"nomCom\":\"Ch�teaudun\",\"NOM_COM\":\"CHATEAUDUN\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":152,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32638,48.07625]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":863,\"INSEE_Comm\":\"61237\",\"nomCom\":\"Loug�-sur-Maire\",\"NOM_COM\":\"LOUGE-SUR-MAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22143,48.70107]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":894,\"INSEE_Comm\":\"61179\",\"nomCom\":\"Fresnaye-au-Sauvage\",\"NOM_COM\":\"LAFRESNAYE-AU-SAUVAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.25933,48.73487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":927,\"INSEE_Comm\":\"27218\",\"nomCom\":\"�paignes\",\"NOM_COM\":\"EPAIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":140,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45368,49.27332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":938,\"INSEE_Comm\":\"14398\",\"nomCom\":\"Manerbe\",\"NOM_COM\":\"MANERBE\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14407,49.17846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":940,\"INSEE_Comm\":\"14029\",\"nomCom\":\"Autels-Saint-Bazile\",\"NOM_COM\":\"LESAUTELS-SAINT-BAZILE\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1028,48.94699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1035,\"INSEE_Comm\":\"61051\",\"nomCom\":\"Boitron\",\"NOM_COM\":\"BOITRON\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26543,48.5693]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1085,\"INSEE_Comm\":\"61210\",\"nomCom\":\"Jou�-du-Plain\",\"NOM_COM\":\"JOUE-DU-PLAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.14006,48.68013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1107,\"INSEE_Comm\":\"61260\",\"nomCom\":\"M�nil-de-Briouze\",\"NOM_COM\":\"LEMENIL-DE-BRIOUZE\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39757,48.66092]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1117,\"INSEE_Comm\":\"27367\",\"nomCom\":\"Lieurey\",\"NOM_COM\":\"LIEUREY\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5008,49.23319]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1133,\"INSEE_Comm\":\"78484\",\"nomCom\":\"Perdreauville\",\"NOM_COM\":\"PERDREAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61325,48.97046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1135,\"INSEE_Comm\":\"61108\",\"nomCom\":\"Cisai-Saint-Aubin\",\"NOM_COM\":\"CISAI-SAINT-AUBIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35771,48.77661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1151,\"INSEE_Comm\":\"61365\",\"nomCom\":\"Saint-Aubin-d'Appenai\",\"NOM_COM\":\"SAINT-AUBIN-D'APPENAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33807,48.54201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1153,\"INSEE_Comm\":\"14194\",\"nomCom\":\"Courtonne-les-Deux-�glises\",\"NOM_COM\":\"COURTONNE-LES-DEUX-EGLISES\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37809,49.08883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1154,\"INSEE_Comm\":\"61168\",\"nomCom\":\"Fert�-Mac�\",\"NOM_COM\":\"LAFERTE-MACE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":84,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36688,48.58183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1162,\"INSEE_Comm\":\"60213\",\"nomCom\":\"Ermenonville\",\"NOM_COM\":\"ERMENONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69631,49.12574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1163,\"INSEE_Comm\":\"61050\",\"nomCom\":\"Boissy-Maugis\",\"NOM_COM\":\"BOISSY-MAUGIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72981,48.4642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1167,\"INSEE_Comm\":\"76432\",\"nomCom\":\"Mesnil-Mauger\",\"NOM_COM\":\"MESNIL-MAUGER\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5213,49.66987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1180,\"INSEE_Comm\":\"76402\",\"nomCom\":\"Malaunay\",\"NOM_COM\":\"MALAUNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":183,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04865,49.5255]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1269,\"INSEE_Comm\":\"80614\",\"nomCom\":\"Outrebois\",\"NOM_COM\":\"OUTREBOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25158,50.16979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1293,\"INSEE_Comm\":\"14050\",\"nomCom\":\"Bazoque\",\"NOM_COM\":\"LABAZOQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.87759,49.15351]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1317,\"INSEE_Comm\":\"61306\",\"nomCom\":\"Neuville-pr�s-S�es\",\"NOM_COM\":\"NEUVILLE-PRES-SEES\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23221,48.64727]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1341,\"INSEE_Comm\":\"61160\",\"nomCom\":\"Feings\",\"NOM_COM\":\"FEINGS\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64909,48.54336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1361,\"INSEE_Comm\":\"27061\",\"nomCom\":\"Berthouville\",\"NOM_COM\":\"BERTHOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62287,49.17112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1378,\"INSEE_Comm\":\"14701\",\"nomCom\":\"Tourg�ville\",\"NOM_COM\":\"TOURGEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07956,49.31781]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1391,\"INSEE_Comm\":\"60159\",\"nomCom\":\"Compi�gne\",\"NOM_COM\":\"COMPIEGNE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"6097\",\"nomCan\":\"Compi�gne\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1007,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85291,49.39904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1395,\"INSEE_Comm\":\"14616\",\"nomCom\":\"Sainte-Marguerite-de-Viette\",\"NOM_COM\":\"SAINTE-MARGUERITE-DE-VIETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08805,49.01199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1397,\"INSEE_Comm\":\"76557\",\"nomCom\":\"Saint-Arnoult\",\"NOM_COM\":\"SAINT-ARNOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67705,49.53665]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1425,\"INSEE_Comm\":\"80396\",\"nomCom\":\"Gueschart\",\"NOM_COM\":\"GUESCHART\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01125,50.23758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1438,\"INSEE_Comm\":\"76099\",\"nomCom\":\"Blacqueville\",\"NOM_COM\":\"BLACQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8485,49.55736]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1461,\"INSEE_Comm\":\"80222\",\"nomCom\":\"Cr�cy-en-Ponthieu\",\"NOM_COM\":\"CRECY-EN-PONTHIEU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8452,50.24021]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1477,\"INSEE_Comm\":\"28233\",\"nomCom\":\"Marbou�\",\"NOM_COM\":\"MARBOUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30776,48.11964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1585,\"INSEE_Comm\":\"76619\",\"nomCom\":\"Saint-Martin-le-Gaillard\",\"NOM_COM\":\"SAINT-MARTIN-LE-GAILLARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3676,49.97481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1600,\"INSEE_Comm\":\"61405\",\"nomCom\":\"Saint-Hilaire-sur-Erre\",\"NOM_COM\":\"SAINT-HILAIRE-SUR-ERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74583,48.31216]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1607,\"INSEE_Comm\":\"14192\",\"nomCom\":\"Courson\",\"NOM_COM\":\"COURSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.08893,48.85273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1608,\"INSEE_Comm\":\"61400\",\"nomCom\":\"Saint-Gervais-du-Perron\",\"NOM_COM\":\"SAINT-GERVAIS-DU-PERRON\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14974,48.53695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1660,\"INSEE_Comm\":\"27672\",\"nomCom\":\"Vascoeuil\",\"NOM_COM\":\"VASCOEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3857,49.44602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1685,\"INSEE_Comm\":\"76034\",\"nomCom\":\"Auffay\",\"NOM_COM\":\"AUFFAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":87,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11304,49.71247]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1729,\"INSEE_Comm\":\"61435\",\"nomCom\":\"Saint-Nicolas-de-Sommaire\",\"NOM_COM\":\"SAINT-NICOLAS-DE-SOMMAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59797,48.81243]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1737,\"INSEE_Comm\":\"14555\",\"nomCom\":\"Saint-Andr�-d'H�bertot\",\"NOM_COM\":\"SAINT-ANDRE-D'HEBERTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29191,49.30322]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1739,\"INSEE_Comm\":\"76749\",\"nomCom\":\"Wanchy-Capval\",\"NOM_COM\":\"WANCHY-CAPVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.37096,49.86407]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1790,\"INSEE_Comm\":\"14332\",\"nomCom\":\"Hoguette\",\"NOM_COM\":\"LAHOGUETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.16066,48.85306]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1808,\"INSEE_Comm\":\"61442\",\"nomCom\":\"Saint-Patrice-du-D�sert\",\"NOM_COM\":\"SAINT-PATRICE-DU-DESERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28584,48.53445]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1831,\"INSEE_Comm\":\"76312\",\"nomCom\":\"Gournay-en-Bray\",\"NOM_COM\":\"GOURNAY-EN-BRAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":254,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71836,49.47948]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1884,\"INSEE_Comm\":\"76392\",\"nomCom\":\"Londini�res\",\"NOM_COM\":\"LONDINIERES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39631,49.84115]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1907,\"INSEE_Comm\":\"61286\",\"nomCom\":\"Montgaudry\",\"NOM_COM\":\"MONTGAUDRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39672,48.40933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1914,\"INSEE_Comm\":\"80578\",\"nomCom\":\"Moyenneville\",\"NOM_COM\":\"MOYENNEVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75418,50.07639]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1931,\"INSEE_Comm\":\"76147\",\"nomCom\":\"Bully\",\"NOM_COM\":\"BULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35897,49.72084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1961,\"INSEE_Comm\":\"14139\",\"nomCom\":\"Carville\",\"NOM_COM\":\"CARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.87172,48.93494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1972,\"INSEE_Comm\":\"60594\",\"nomCom\":\"Saint-Quentin-des-Pr�s\",\"NOM_COM\":\"SAINT-QUENTIN-DES-PRES\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74789,49.52015]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1977,\"INSEE_Comm\":\"61116\",\"nomCom\":\"Cond�-sur-Huisne\",\"NOM_COM\":\"CONDE-SUR-HUISNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86467,48.37933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":1986,\"INSEE_Comm\":\"27040\",\"nomCom\":\"Barquet\",\"NOM_COM\":\"BARQUET\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85464,49.0395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2028,\"INSEE_Comm\":\"28305\",\"nomCom\":\"Pr�-Saint-�vroult\",\"NOM_COM\":\"PRE-SAINT-EVROULT\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.461,48.18784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2032,\"INSEE_Comm\":\"78350\",\"nomCom\":\"Louveciennes\",\"NOM_COM\":\"LOUVECIENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"7813\",\"nomCan\":\"Marly-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":79,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11364,48.85902]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2033,\"INSEE_Comm\":\"14679\",\"nomCom\":\"Subles\",\"NOM_COM\":\"SUBLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.74993,49.2392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2062,\"INSEE_Comm\":\"60684\",\"nomCom\":\"Villers-Saint-Paul\",\"NOM_COM\":\"VILLERS-SAINT-PAUL\",\"Statut\":\"Communesimple\",\"idCan\":\"6011\",\"nomCan\":\"Creil-Nogent-sur-Oise\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49457,49.28824]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2067,\"INSEE_Comm\":\"76739\",\"nomCom\":\"Vieux-Rouen-sur-Bresle\",\"NOM_COM\":\"VIEUX-ROUEN-SUR-BRESLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70738,49.83212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2070,\"INSEE_Comm\":\"78108\",\"nomCom\":\"Br�viaires\",\"NOM_COM\":\"LESBREVIAIRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":88,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81639,48.72124]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2078,\"INSEE_Comm\":\"27109\",\"nomCom\":\"Bray\",\"NOM_COM\":\"BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83603,49.10429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2082,\"INSEE_Comm\":\"60633\",\"nomCom\":\"Thieuloy-Saint-Antoine\",\"NOM_COM\":\"THIEULOY-SAINT-ANTOINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94613,49.63478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2085,\"INSEE_Comm\":\"76329\",\"nomCom\":\"Gruchet-le-Valasse\",\"NOM_COM\":\"GRUCHET-LE-VALASSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":79,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51393,49.54972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2087,\"INSEE_Comm\":\"61324\",\"nomCom\":\"Passais\",\"NOM_COM\":\"PASSAIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75954,48.51426]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2088,\"INSEE_Comm\":\"61421\",\"nomCom\":\"Saint-Mars-d'�grenne\",\"NOM_COM\":\"SAINT-MARS-D'EGRENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73368,48.55137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2092,\"INSEE_Comm\":\"14564\",\"nomCom\":\"Saint-Charles-de-Percy\",\"NOM_COM\":\"SAINT-CHARLES-DE-PERCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.79144,48.91873]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2093,\"INSEE_Comm\":\"80637\",\"nomCom\":\"Port-le-Grand\",\"NOM_COM\":\"PORT-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75979,50.15509]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2094,\"INSEE_Comm\":\"95483\",\"nomCom\":\"Perchay\",\"NOM_COM\":\"LEPERCHAY\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92739,49.1164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2106,\"INSEE_Comm\":\"61018\",\"nomCom\":\"Avernes-Saint-Gourgon\",\"NOM_COM\":\"AVERNES-SAINT-GOURGON\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31351,48.93704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2112,\"INSEE_Comm\":\"95177\",\"nomCom\":\"Cormeilles-en-Vexin\",\"NOM_COM\":\"CORMEILLES-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":70,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01966,49.11337]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2130,\"INSEE_Comm\":\"27124\",\"nomCom\":\"Cailly-sur-Eure\",\"NOM_COM\":\"CAILLY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21848,49.11943]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2131,\"INSEE_Comm\":\"14394\",\"nomCom\":\"Maizi�res\",\"NOM_COM\":\"MAIZIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.16692,49.01423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2135,\"INSEE_Comm\":\"60444\",\"nomCom\":\"Mureaumont\",\"NOM_COM\":\"MUREAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78734,49.62273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2137,\"INSEE_Comm\":\"80337\",\"nomCom\":\"Fouencamps\",\"NOM_COM\":\"FOUENCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40788,49.81913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2156,\"INSEE_Comm\":\"14317\",\"nomCom\":\"Graverie\",\"NOM_COM\":\"LAGRAVERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86022,48.89643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2157,\"INSEE_Comm\":\"60226\",\"nomCom\":\"�ve\",\"NOM_COM\":\"EVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70919,49.08752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2161,\"INSEE_Comm\":\"95456\",\"nomCom\":\"Noisy-sur-Oise\",\"NOM_COM\":\"NOISY-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32848,49.13467]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2204,\"INSEE_Comm\":\"27259\",\"nomCom\":\"Foucrainville\",\"NOM_COM\":\"FOUCRAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31993,48.92746]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2208,\"INSEE_Comm\":\"14545\",\"nomCom\":\"Roullours\",\"NOM_COM\":\"ROULLOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83705,48.82677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2238,\"INSEE_Comm\":\"76263\",\"nomCom\":\"Feuillie\",\"NOM_COM\":\"LAFEUILLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52105,49.46523]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2240,\"INSEE_Comm\":\"61233\",\"nomCom\":\"Lonlay-le-Tesson\",\"NOM_COM\":\"LONLAY-LE-TESSON\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34612,48.65036]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2288,\"INSEE_Comm\":\"14352\",\"nomCom\":\"Landelles-et-Coupigny\",\"NOM_COM\":\"LANDELLES-ET-COUPIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.003,48.8984]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2296,\"INSEE_Comm\":\"80306\",\"nomCom\":\"Fescamps\",\"NOM_COM\":\"FESCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68665,49.64155]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2301,\"INSEE_Comm\":\"80352\",\"nomCom\":\"Fr�montiers\",\"NOM_COM\":\"FREMONTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07402,49.76845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2312,\"INSEE_Comm\":\"76020\",\"nomCom\":\"Anneville-Ambourville\",\"NOM_COM\":\"ANNEVILLE-AMBOURVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":97,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89198,49.45004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2330,\"INSEE_Comm\":\"14356\",\"nomCom\":\"Lasson\",\"NOM_COM\":\"LASSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47344,49.23175]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2336,\"INSEE_Comm\":\"80403\",\"nomCom\":\"Guyencourt-sur-Noye\",\"NOM_COM\":\"GUYENCOURT-SUR-NOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3606,49.77649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2353,\"INSEE_Comm\":\"14271\",\"nomCom\":\"Fleury-sur-Orne\",\"NOM_COM\":\"FLEURY-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1444\",\"nomCan\":\"Caen8eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":329,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37738,49.14443]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2357,\"INSEE_Comm\":\"27686\",\"nomCom\":\"Vieux-Port\",\"NOM_COM\":\"VIEUX-PORT\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60834,49.42698]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2359,\"INSEE_Comm\":\"60075\",\"nomCom\":\"Blancfoss�\",\"NOM_COM\":\"BLANCFOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18954,49.6625]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2383,\"INSEE_Comm\":\"80067\",\"nomCom\":\"Beaufort-en-Santerre\",\"NOM_COM\":\"BEAUFORT-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6608,49.78165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2405,\"INSEE_Comm\":\"61467\",\"nomCom\":\"Semall�\",\"NOM_COM\":\"SEMALLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15479,48.47353]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2408,\"INSEE_Comm\":\"80143\",\"nomCom\":\"Brocourt\",\"NOM_COM\":\"BROCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81975,49.85112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2418,\"INSEE_Comm\":\"14242\",\"nomCom\":\"�pron\",\"NOM_COM\":\"EPRON\",\"Statut\":\"Communesimple\",\"idCan\":\"1440\",\"nomCan\":\"Caen4eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36458,49.22003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2425,\"INSEE_Comm\":\"27588\",\"nomCom\":\"Saint-Pierre-d'Autils\",\"NOM_COM\":\"SAINT-PIERRE-D'AUTILS\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42758,49.12472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2429,\"INSEE_Comm\":\"76103\",\"nomCom\":\"Bonsecours\",\"NOM_COM\":\"BONSECOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":92,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12937,49.42593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2457,\"INSEE_Comm\":\"28365\",\"nomCom\":\"Sandarville\",\"NOM_COM\":\"SANDARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34878,48.34587]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2460,\"INSEE_Comm\":\"27674\",\"nomCom\":\"Vaux-sur-Eure\",\"NOM_COM\":\"VAUX-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33389,49.03587]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2473,\"INSEE_Comm\":\"14410\",\"nomCom\":\"M�ry-Corbon\",\"NOM_COM\":\"MERY-CORBON\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07459,49.13173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2478,\"INSEE_Comm\":\"14745\",\"nomCom\":\"Vierville-sur-Mer\",\"NOM_COM\":\"VIERVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.9015,49.3669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2480,\"INSEE_Comm\":\"80270\",\"nomCom\":\"�p�camps\",\"NOM_COM\":\"EPECAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15406,50.1109]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2502,\"INSEE_Comm\":\"61063\",\"nomCom\":\"Briouze\",\"NOM_COM\":\"BRIOUZE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37775,48.71116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2537,\"INSEE_Comm\":\"80826\",\"nomCom\":\"Woignarue\",\"NOM_COM\":\"WOIGNARUE\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48625,50.11955]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2550,\"INSEE_Comm\":\"61077\",\"nomCom\":\"Ceris�\",\"NOM_COM\":\"CERISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1316,48.44374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2556,\"INSEE_Comm\":\"61079\",\"nomCom\":\"Ceton\",\"NOM_COM\":\"CETON\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75835,48.225]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2568,\"INSEE_Comm\":\"95254\",\"nomCom\":\"Fr�m�court\",\"NOM_COM\":\"FREMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99348,49.1235]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2573,\"INSEE_Comm\":\"28344\",\"nomCom\":\"Saint-L�ger-des-Aub�es\",\"NOM_COM\":\"SAINT-LEGER-DES-AUBEES\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74991,48.41428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2612,\"INSEE_Comm\":\"78413\",\"nomCom\":\"Mondreville\",\"NOM_COM\":\"MONDREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55787,48.90426]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2617,\"INSEE_Comm\":\"61081\",\"nomCom\":\"Chaillou�\",\"NOM_COM\":\"CHAILLOUE\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19651,48.65689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2618,\"INSEE_Comm\":\"76067\",\"nomCom\":\"Beauvoir-en-Lyons\",\"NOM_COM\":\"BEAUVOIR-EN-LYONS\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58307,49.48426]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2623,\"INSEE_Comm\":\"76259\",\"nomCom\":\"F�camp\",\"NOM_COM\":\"FECAMP\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":546,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3953,49.75233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2627,\"INSEE_Comm\":\"78230\",\"nomCom\":\"Falaise\",\"NOM_COM\":\"LAFALAISE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82538,48.93695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2648,\"INSEE_Comm\":\"61332\",\"nomCom\":\"Pointel\",\"NOM_COM\":\"POINTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.3485,48.69453]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2662,\"INSEE_Comm\":\"76548\",\"nomCom\":\"Ry\",\"NOM_COM\":\"RY\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3361,49.47332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2663,\"INSEE_Comm\":\"60253\",\"nomCom\":\"Francastel\",\"NOM_COM\":\"FRANCASTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14866,49.58984]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2678,\"INSEE_Comm\":\"27190\",\"nomCom\":\"Croisy-sur-Eure\",\"NOM_COM\":\"CROISY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34203,49.02609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2681,\"INSEE_Comm\":\"80486\",\"nomCom\":\"Long\",\"NOM_COM\":\"LONG\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98829,50.04142]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2690,\"INSEE_Comm\":\"95604\",\"nomCom\":\"Survilliers\",\"NOM_COM\":\"SURVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":160,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54411,49.10597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2745,\"INSEE_Comm\":\"27079\",\"nomCom\":\"Boissy-Lamberville\",\"NOM_COM\":\"BOISSY-LAMBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57845,49.1568]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2752,\"INSEE_Comm\":\"80039\",\"nomCom\":\"Ault\",\"NOM_COM\":\"AULT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44704,50.0928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2782,\"INSEE_Comm\":\"80360\",\"nomCom\":\"Fressenneville\",\"NOM_COM\":\"FRESSENNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56653,50.06127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2790,\"INSEE_Comm\":\"78239\",\"nomCom\":\"Follainville-Dennemont\",\"NOM_COM\":\"FOLLAINVILLE-DENNEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70861,49.02299]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2797,\"INSEE_Comm\":\"61195\",\"nomCom\":\"Grais\",\"NOM_COM\":\"LEGRAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32044,48.64025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2804,\"INSEE_Comm\":\"61186\",\"nomCom\":\"Geneslay\",\"NOM_COM\":\"GENESLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48529,48.51485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2825,\"INSEE_Comm\":\"95250\",\"nomCom\":\"Fosses\",\"NOM_COM\":\"FOSSES\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":111,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49907,49.10005]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2857,\"INSEE_Comm\":\"61190\",\"nomCom\":\"Ginai\",\"NOM_COM\":\"GINAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20947,48.74453]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2865,\"INSEE_Comm\":\"95256\",\"nomCom\":\"Fr�pillon\",\"NOM_COM\":\"FREPILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"9525\",\"nomCan\":\"Taverny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":100,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2049,49.05013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2871,\"INSEE_Comm\":\"60683\",\"nomCom\":\"Villers-Saint-Genest\",\"NOM_COM\":\"VILLERS-SAINT-GENEST\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89997,49.14033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2875,\"INSEE_Comm\":\"60304\",\"nomCom\":\"Haute-�pine\",\"NOM_COM\":\"HAUTE-EPINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00668,49.58285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2887,\"INSEE_Comm\":\"80304\",\"nomCom\":\"Fay\",\"NOM_COM\":\"FAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80238,49.88735]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2909,\"INSEE_Comm\":\"28322\",\"nomCom\":\"Rueil-la-Gadeli�re\",\"NOM_COM\":\"RUEIL-LA-GADELIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96345,48.70453]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2944,\"INSEE_Comm\":\"61330\",\"nomCom\":\"Planches\",\"NOM_COM\":\"PLANCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37752,48.68976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2952,\"INSEE_Comm\":\"28226\",\"nomCom\":\"Maillebois\",\"NOM_COM\":\"MAILLEBOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15011,48.63211]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2954,\"INSEE_Comm\":\"27658\",\"nomCom\":\"Tremblay-Omonville\",\"NOM_COM\":\"LETREMBLAY-OMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91472,49.12097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2994,\"INSEE_Comm\":\"76324\",\"nomCom\":\"Gr�ges\",\"NOM_COM\":\"GREGES\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14871,49.92392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":2998,\"INSEE_Comm\":\"95436\",\"nomCom\":\"Mours\",\"NOM_COM\":\"MOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26416,49.1304]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3008,\"INSEE_Comm\":\"61412\",\"nomCom\":\"Saint-Julien-sur-Sarthe\",\"NOM_COM\":\"SAINT-JULIEN-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37341,48.48995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3027,\"INSEE_Comm\":\"60316\",\"nomCom\":\"Hodenc-l'�v�que\",\"NOM_COM\":\"HODENC-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14177,49.33616]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3039,\"INSEE_Comm\":\"80115\",\"nomCom\":\"Bouchavesnes-Bergen\",\"NOM_COM\":\"BOUCHAVESNES-BERGEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.92164,49.99245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3041,\"INSEE_Comm\":\"60599\",\"nomCom\":\"Saint-Thibault\",\"NOM_COM\":\"SAINT-THIBAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82443,49.6941]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3061,\"INSEE_Comm\":\"28022\",\"nomCom\":\"Bailleau-l'�v�que\",\"NOM_COM\":\"BAILLEAU-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2830\",\"nomCan\":\"Mainvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39656,48.48758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3099,\"INSEE_Comm\":\"61239\",\"nomCom\":\"Luc�\",\"NOM_COM\":\"LUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.59317,48.55423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3127,\"INSEE_Comm\":\"76473\",\"nomCom\":\"Notre-Dame-de-Bliquetuit\",\"NOM_COM\":\"NOTRE-DAME-DE-BLIQUETUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75287,49.49619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3131,\"INSEE_Comm\":\"27184\",\"nomCom\":\"Crasville\",\"NOM_COM\":\"CRASVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07198,49.2052]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3149,\"INSEE_Comm\":\"80491\",\"nomCom\":\"Longuevillette\",\"NOM_COM\":\"LONGUEVILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27525,50.13029]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3174,\"INSEE_Comm\":\"61216\",\"nomCom\":\"Lande-de-Goult\",\"NOM_COM\":\"LALANDE-DE-GOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.05484,48.58403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3188,\"INSEE_Comm\":\"78609\",\"nomCom\":\"Tessancourt-sur-Aubette\",\"NOM_COM\":\"TESSANCOURT-SUR-AUBETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91835,49.02504]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3197,\"INSEE_Comm\":\"28195\",\"nomCom\":\"Houx\",\"NOM_COM\":\"HOUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62105,48.56979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3258,\"INSEE_Comm\":\"61402\",\"nomCom\":\"Saint-Hilaire-de-Briouze\",\"NOM_COM\":\"SAINT-HILAIRE-DE-BRIOUZE\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30766,48.7073]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3262,\"INSEE_Comm\":\"78068\",\"nomCom\":\"Blaru\",\"NOM_COM\":\"BLARU\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48064,49.04079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3273,\"INSEE_Comm\":\"80655\",\"nomCom\":\"Quesnoy-sur-Airaines\",\"NOM_COM\":\"QUESNOY-SUR-AIRAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99219,49.94936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3308,\"INSEE_Comm\":\"80443\",\"nomCom\":\"Hornoy-le-Bourg\",\"NOM_COM\":\"HORNOY-LE-BOURG\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":79,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90288,49.84743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3309,\"INSEE_Comm\":\"80106\",\"nomCom\":\"Blangy-sous-Poix\",\"NOM_COM\":\"BLANGY-SOUS-POIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00447,49.76609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3312,\"INSEE_Comm\":\"78043\",\"nomCom\":\"Bailly\",\"NOM_COM\":\"BAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08068,48.83669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3313,\"INSEE_Comm\":\"61265\",\"nomCom\":\"M�nil-Gondouin\",\"NOM_COM\":\"MENIL-GONDOUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29709,48.75416]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3318,\"INSEE_Comm\":\"80436\",\"nomCom\":\"Hescamps\",\"NOM_COM\":\"HESCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87752,49.72882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3319,\"INSEE_Comm\":\"80134\",\"nomCom\":\"Brassy\",\"NOM_COM\":\"BRASSY\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05042,49.73149]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3326,\"INSEE_Comm\":\"14266\",\"nomCom\":\"Feuguerolles-Bully\",\"NOM_COM\":\"FEUGUEROLLES-BULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":136,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.40758,49.11193]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3348,\"INSEE_Comm\":\"28419\",\"nomCom\":\"Vitray-en-Beauce\",\"NOM_COM\":\"VITRAY-EN-BEAUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42369,48.27651]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3358,\"INSEE_Comm\":\"61393\",\"nomCom\":\"Saint-Germain-de-Clairefeuille\",\"NOM_COM\":\"SAINT-GERMAIN-DE-CLAIREFEUILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24089,48.72564]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3393,\"INSEE_Comm\":\"27001\",\"nomCom\":\"Aclou\",\"NOM_COM\":\"ACLOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69829,49.16556]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3399,\"INSEE_Comm\":\"14132\",\"nomCom\":\"Canchy\",\"NOM_COM\":\"CANCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.98491,49.33106]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3406,\"INSEE_Comm\":\"28064\",\"nomCom\":\"B�\",\"NOM_COM\":\"BU\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49328,48.80223]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3415,\"INSEE_Comm\":\"95280\",\"nomCom\":\"Goussainville\",\"NOM_COM\":\"GOUSSAINVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9530\",\"nomCan\":\"Goussainville\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":429,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4662,49.02434]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3443,\"INSEE_Comm\":\"78551\",\"nomCom\":\"Saint-Germain-en-Laye\",\"NOM_COM\":\"SAINT-GERMAIN-EN-LAYE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"7898\",\"nomCan\":\"Saint-Germain-en-Laye\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":95,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09869,48.94069]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3445,\"INSEE_Comm\":\"76095\",\"nomCom\":\"Bihorel\",\"NOM_COM\":\"BIHOREL\",\"Statut\":\"Communesimple\",\"idCan\":\"7660\",\"nomCan\":\"Bois-Guillaume-Bihorel\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12774,49.46274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3446,\"INSEE_Comm\":\"60506\",\"nomCom\":\"Pont-l'�v�que\",\"NOM_COM\":\"PONT-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98668,49.56276]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3467,\"INSEE_Comm\":\"27103\",\"nomCom\":\"Bourg-Achard\",\"NOM_COM\":\"BOURG-ACHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":296,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80916,49.34507]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3469,\"INSEE_Comm\":\"61381\",\"nomCom\":\"Saint-Denis-sur-Huisne\",\"NOM_COM\":\"SAINT-DENIS-SUR-HUISNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53165,48.47076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3475,\"INSEE_Comm\":\"27143\",\"nomCom\":\"Champignolles\",\"NOM_COM\":\"CHAMPIGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76081,48.95793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3482,\"INSEE_Comm\":\"27697\",\"nomCom\":\"Vironvay\",\"NOM_COM\":\"VIRONVAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2721\",\"nomCan\":\"Louviers-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21967,49.20642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3512,\"INSEE_Comm\":\"76391\",\"nomCom\":\"Londe\",\"NOM_COM\":\"LALONDE\",\"Statut\":\"Communesimple\",\"idCan\":\"7617\",\"nomCan\":\"Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":139,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92019,49.32384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3516,\"INSEE_Comm\":\"27547\",\"nomCom\":\"Saint-Germain-la-Campagne\",\"NOM_COM\":\"SAINT-GERMAIN-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":66,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41285,49.05229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3522,\"INSEE_Comm\":\"14240\",\"nomCom\":\"�paney\",\"NOM_COM\":\"EPANEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15943,48.94549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3588,\"INSEE_Comm\":\"76110\",\"nomCom\":\"Bois-Himont\",\"NOM_COM\":\"BOIS-HIMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69143,49.58069]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3605,\"INSEE_Comm\":\"28253\",\"nomCom\":\"Migni�res\",\"NOM_COM\":\"MIGNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.424,48.3608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3614,\"INSEE_Comm\":\"76287\",\"nomCom\":\"Fresquiennes\",\"NOM_COM\":\"FRESQUIENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01239,49.56175]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3648,\"INSEE_Comm\":\"28023\",\"nomCom\":\"Bailleau-Armenonville\",\"NOM_COM\":\"BAILLEAU-ARMENONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64741,48.52702]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3649,\"INSEE_Comm\":\"27390\",\"nomCom\":\"Marcilly-la-Campagne\",\"NOM_COM\":\"MARCILLY-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":78,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18748,48.82705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3666,\"INSEE_Comm\":\"27471\",\"nomCom\":\"Porte-Joie\",\"NOM_COM\":\"PORTE-JOIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25122,49.25241]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3674,\"INSEE_Comm\":\"14628\",\"nomCom\":\"Saint-Martin-de-Sallen\",\"NOM_COM\":\"SAINT-MARTIN-DE-SALLEN\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52074,48.97512]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3690,\"INSEE_Comm\":\"27084\",\"nomCom\":\"Bosc-B�nard-Commin\",\"NOM_COM\":\"BOSC-BENARD-COMMIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85146,49.31627]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3717,\"INSEE_Comm\":\"80109\",\"nomCom\":\"Boisle\",\"NOM_COM\":\"LEBOISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97367,50.26835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3749,\"INSEE_Comm\":\"14286\",\"nomCom\":\"Fourneville\",\"NOM_COM\":\"FOURNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23285,49.35719]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3757,\"INSEE_Comm\":\"61434\",\"nomCom\":\"Saint-Nicolas-des-Laitiers\",\"NOM_COM\":\"SAINT-NICOLAS-DES-LAITIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42876,48.83198]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3762,\"INSEE_Comm\":\"27215\",\"nomCom\":\"Ecquetot\",\"NOM_COM\":\"ECQUETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01306,49.16955]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3770,\"INSEE_Comm\":\"28392\",\"nomCom\":\"Trancrainville\",\"NOM_COM\":\"TRANCRAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86151,48.23781]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3788,\"INSEE_Comm\":\"61345\",\"nomCom\":\"R�malard\",\"NOM_COM\":\"REMALARD\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77916,48.4498]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3791,\"INSEE_Comm\":\"27312\",\"nomCom\":\"Hardencourt-Cocherel\",\"NOM_COM\":\"HARDENCOURT-COCHEREL\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31602,49.04188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3798,\"INSEE_Comm\":\"14265\",\"nomCom\":\"Fervaques\",\"NOM_COM\":\"FERVAQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27015,49.03709]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3813,\"INSEE_Comm\":\"60500\",\"nomCom\":\"Plessis-Belleville\",\"NOM_COM\":\"LEPLESSIS-BELLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":207,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.759,49.09845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3820,\"INSEE_Comm\":\"28259\",\"nomCom\":\"Montboissier\",\"NOM_COM\":\"MONTBOISSIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40996,48.22966]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3861,\"INSEE_Comm\":\"14046\",\"nomCom\":\"Bavent\",\"NOM_COM\":\"BAVENT\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":76,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.183,49.22605]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3872,\"INSEE_Comm\":\"80105\",\"nomCom\":\"Billancourt\",\"NOM_COM\":\"BILLANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8992,49.73845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3891,\"INSEE_Comm\":\"61426\",\"nomCom\":\"Saint-Martin-du-Vieux-Bell�me\",\"NOM_COM\":\"SAINT-MARTIN-DU-VIEUX-BELLEME\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54711,48.37259]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3899,\"INSEE_Comm\":\"14235\",\"nomCom\":\"�crammeville\",\"NOM_COM\":\"ECRAMMEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.94241,49.32163]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3900,\"INSEE_Comm\":\"95308\",\"nomCom\":\"H�rouville\",\"NOM_COM\":\"HEROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12722,49.10489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3909,\"INSEE_Comm\":\"76616\",\"nomCom\":\"Saint-Martin-du-Manoir\",\"NOM_COM\":\"SAINT-MARTIN-DU-MANOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23483,49.53715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3939,\"INSEE_Comm\":\"60478\",\"nomCom\":\"Ormoy-le-Davien\",\"NOM_COM\":\"ORMOY-LE-DAVIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95791,49.19608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3947,\"INSEE_Comm\":\"14407\",\"nomCom\":\"Mathieu\",\"NOM_COM\":\"MATHIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":186,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36678,49.25623]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3949,\"INSEE_Comm\":\"80042\",\"nomCom\":\"Autheux\",\"NOM_COM\":\"AUTHEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23314,50.13954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3974,\"INSEE_Comm\":\"14582\",\"nomCom\":\"Saint-Germain-de-Livet\",\"NOM_COM\":\"SAINT-GERMAIN-DE-LIVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19753,49.07674]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":3997,\"INSEE_Comm\":\"80529\",\"nomCom\":\"M�r�lessart\",\"NOM_COM\":\"MERELESSART\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84858,49.9722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4003,\"INSEE_Comm\":\"27048\",\"nomCom\":\"Beauficel-en-Lyons\",\"NOM_COM\":\"BEAUFICEL-EN-LYONS\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52481,49.40444]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4031,\"INSEE_Comm\":\"76709\",\"nomCom\":\"Trait\",\"NOM_COM\":\"LETRAIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":152,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81929,49.48427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4032,\"INSEE_Comm\":\"61150\",\"nomCom\":\"�chauffour\",\"NOM_COM\":\"ECHAUFFOUR\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39514,48.73223]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4033,\"INSEE_Comm\":\"27332\",\"nomCom\":\"Heudebouville\",\"NOM_COM\":\"HEUDEBOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2721\",\"nomCan\":\"Louviers-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23713,49.19275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4037,\"INSEE_Comm\":\"95060\",\"nomCom\":\"Bessancourt\",\"NOM_COM\":\"BESSANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9525\",\"nomCan\":\"Taverny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":117,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19851,49.03731]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4047,\"INSEE_Comm\":\"80251\",\"nomCom\":\"Doudelainville\",\"NOM_COM\":\"DOUDELAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76404,50.00088]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4055,\"INSEE_Comm\":\"14726\",\"nomCom\":\"Vassy\",\"NOM_COM\":\"VASSY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":91,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.65831,48.8636]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4071,\"INSEE_Comm\":\"61185\",\"nomCom\":\"G�mages\",\"NOM_COM\":\"GEMAGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61559,48.296]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4091,\"INSEE_Comm\":\"80774\",\"nomCom\":\"Vaire-sous-Corbie\",\"NOM_COM\":\"VAIRE-SOUS-CORBIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54929,49.90164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4114,\"INSEE_Comm\":\"27203\",\"nomCom\":\"Douains\",\"NOM_COM\":\"DOUAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"2740\",\"nomCan\":\"Vernon-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43122,49.04391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4117,\"INSEE_Comm\":\"61246\",\"nomCom\":\"M�le\",\"NOM_COM\":\"MALE\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75394,48.27392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4125,\"INSEE_Comm\":\"60007\",\"nomCom\":\"Agnetz\",\"NOM_COM\":\"AGNETZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":168,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.383,49.39618]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4131,\"INSEE_Comm\":\"60020\",\"nomCom\":\"Antilly\",\"NOM_COM\":\"ANTILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98807,49.15507]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4134,\"INSEE_Comm\":\"76584\",\"nomCom\":\"Saint-Germain-sur-Eaulne\",\"NOM_COM\":\"SAINT-GERMAIN-SUR-EAULNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51055,49.76596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4152,\"INSEE_Comm\":\"61166\",\"nomCom\":\"Ferri�res-la-Verrerie\",\"NOM_COM\":\"FERRIERES-LA-VERRERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37696,48.65246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4164,\"INSEE_Comm\":\"28425\",\"nomCom\":\"Ymeray\",\"NOM_COM\":\"YMERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70306,48.50898]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4175,\"INSEE_Comm\":\"60334\",\"nomCom\":\"Lachapelle-Saint-Pierre\",\"NOM_COM\":\"LACHAPELLE-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23633,49.26877]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4179,\"INSEE_Comm\":\"14432\",\"nomCom\":\"Missy\",\"NOM_COM\":\"MISSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54266,49.12289]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4184,\"INSEE_Comm\":\"95447\",\"nomCom\":\"Neuilly-en-Vexin\",\"NOM_COM\":\"NEUILLY-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98037,49.17382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4198,\"INSEE_Comm\":\"61277\",\"nomCom\":\"Mesni�re\",\"NOM_COM\":\"LAMESNIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43402,48.52179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4205,\"INSEE_Comm\":\"27489\",\"nomCom\":\"Reuilly\",\"NOM_COM\":\"REUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22648,49.07284]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4206,\"INSEE_Comm\":\"60010\",\"nomCom\":\"Amblainville\",\"NOM_COM\":\"AMBLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12051,49.20722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4209,\"INSEE_Comm\":\"14671\",\"nomCom\":\"Sept-Fr�res\",\"NOM_COM\":\"SEPT-FRERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.0402,48.8642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4211,\"INSEE_Comm\":\"61416\",\"nomCom\":\"Saint-L�onard-des-Parcs\",\"NOM_COM\":\"SAINT-LEONARD-DES-PARCS\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27682,48.64603]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4229,\"INSEE_Comm\":\"28278\",\"nomCom\":\"Nogent-le-Phaye\",\"NOM_COM\":\"NOGENT-LE-PHAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2825\",\"nomCan\":\"Chartres-Sud-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":92,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57822,48.45189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4261,\"INSEE_Comm\":\"61002\",\"nomCom\":\"Almen�ches\",\"NOM_COM\":\"ALMENECHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.12546,48.69823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4302,\"INSEE_Comm\":\"28197\",\"nomCom\":\"Intr�ville\",\"NOM_COM\":\"INTREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93553,48.29824]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4304,\"INSEE_Comm\":\"80256\",\"nomCom\":\"Dreuil-l�s-Amiens\",\"NOM_COM\":\"DREUIL-LES-AMIENS\",\"Statut\":\"Communesimple\",\"idCan\":\"8007\",\"nomCan\":\"Amiens1er(Ouest)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22637,49.91598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4313,\"INSEE_Comm\":\"27612\",\"nomCom\":\"Saint-Vincent-des-Bois\",\"NOM_COM\":\"SAINT-VINCENT-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2740\",\"nomCan\":\"Vernon-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3938,49.06009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4320,\"INSEE_Comm\":\"76220\",\"nomCom\":\"Douvrend\",\"NOM_COM\":\"DOUVREND\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3196,49.87376]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4356,\"INSEE_Comm\":\"78217\",\"nomCom\":\"�p�ne\",\"NOM_COM\":\"EPONE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":96,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81269,48.94717]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4357,\"INSEE_Comm\":\"61500\",\"nomCom\":\"Ventrouze\",\"NOM_COM\":\"LAVENTROUZE\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68898,48.612]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4359,\"INSEE_Comm\":\"76485\",\"nomCom\":\"Omonville\",\"NOM_COM\":\"OMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0488,49.79073]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4368,\"INSEE_Comm\":\"61207\",\"nomCom\":\"Ig�\",\"NOM_COM\":\"IGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51679,48.31284]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4373,\"INSEE_Comm\":\"95061\",\"nomCom\":\"B�themont-la-For�t\",\"NOM_COM\":\"BETHEMONT-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"9525\",\"nomCan\":\"Taverny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25114,49.05432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4384,\"INSEE_Comm\":\"76729\",\"nomCom\":\"Veauville-l�s-Baons\",\"NOM_COM\":\"VEAUVILLE-LES-BAONS\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75925,49.65436]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4388,\"INSEE_Comm\":\"80765\",\"nomCom\":\"Tours-en-Vimeu\",\"NOM_COM\":\"TOURS-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":61,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68427,50.03532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4420,\"INSEE_Comm\":\"27282\",\"nomCom\":\"Gauville-la-Campagne\",\"NOM_COM\":\"GAUVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08359,49.04928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4431,\"INSEE_Comm\":\"27054\",\"nomCom\":\"B�m�court\",\"NOM_COM\":\"BEMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84769,48.84307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4442,\"INSEE_Comm\":\"60343\",\"nomCom\":\"Lalande-en-Son\",\"NOM_COM\":\"LALANDE-EN-SON\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7848,49.38904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4443,\"INSEE_Comm\":\"60193\",\"nomCom\":\"Dam�raucourt\",\"NOM_COM\":\"DAMERAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92281,49.70129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4499,\"INSEE_Comm\":\"61248\",\"nomCom\":\"Mantilly\",\"NOM_COM\":\"MANTILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81362,48.51131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4513,\"INSEE_Comm\":\"80775\",\"nomCom\":\"Valines\",\"NOM_COM\":\"VALINES\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62717,50.07938]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4527,\"INSEE_Comm\":\"76066\",\"nomCom\":\"Beautot\",\"NOM_COM\":\"BEAUTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0478,49.63626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4545,\"INSEE_Comm\":\"61110\",\"nomCom\":\"Coch�re\",\"NOM_COM\":\"LACOCHERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15512,48.72213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4546,\"INSEE_Comm\":\"61407\",\"nomCom\":\"Sainte-Honorine-la-Chardonne\",\"NOM_COM\":\"SAINTE-HONORINE-LA-CHARDONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47613,48.82474]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4595,\"INSEE_Comm\":\"61245\",\"nomCom\":\"Maison-Maugis\",\"NOM_COM\":\"MAISON-MAUGIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68988,48.46008]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4598,\"INSEE_Comm\":\"60295\",\"nomCom\":\"Halloy\",\"NOM_COM\":\"HALLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9367,49.64986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4602,\"INSEE_Comm\":\"76588\",\"nomCom\":\"Saint-Hellier\",\"NOM_COM\":\"SAINT-HELLIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19754,49.73929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4609,\"INSEE_Comm\":\"76052\",\"nomCom\":\"Bailleul-Neuville\",\"NOM_COM\":\"BAILLEUL-NEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42191,49.80968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4615,\"INSEE_Comm\":\"76059\",\"nomCom\":\"Bazinval\",\"NOM_COM\":\"BAZINVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54756,49.94835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4624,\"INSEE_Comm\":\"80730\",\"nomCom\":\"Saveuse\",\"NOM_COM\":\"SAVEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8007\",\"nomCan\":\"Amiens1er(Ouest)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20932,49.89611]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4626,\"INSEE_Comm\":\"78120\",\"nomCom\":\"Bullion\",\"NOM_COM\":\"BULLION\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98307,48.62458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4645,\"INSEE_Comm\":\"61006\",\"nomCom\":\"Argentan\",\"NOM_COM\":\"ARGENTAN\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"6197\",\"nomCan\":\"Argentan\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":114,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.01309,48.73169]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4649,\"INSEE_Comm\":\"76447\",\"nomCom\":\"Montivilliers\",\"NOM_COM\":\"MONTIVILLIERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":549,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19033,49.54427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4659,\"INSEE_Comm\":\"27355\",\"nomCom\":\"Ivry-la-Bataille\",\"NOM_COM\":\"IVRY-LA-BATAILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44689,48.88627]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4661,\"INSEE_Comm\":\"61389\",\"nomCom\":\"Sainte-Gauburge-Sainte-Colombe\",\"NOM_COM\":\"SAINTE-GAUBURGE-SAINTE-COLOMBE\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44453,48.70784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4665,\"INSEE_Comm\":\"14064\",\"nomCom\":\"Berni�res-d'Ailly\",\"NOM_COM\":\"BERNIERES-D'AILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10226,48.94746]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4667,\"INSEE_Comm\":\"60504\",\"nomCom\":\"Ponchon\",\"NOM_COM\":\"PONCHON\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18397,49.34811]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4679,\"INSEE_Comm\":\"28358\",\"nomCom\":\"Saint-Prest\",\"NOM_COM\":\"SAINT-PREST\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51425,48.49202]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4689,\"INSEE_Comm\":\"14406\",\"nomCom\":\"Martragny\",\"NOM_COM\":\"MARTRAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60137,49.24864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4690,\"INSEE_Comm\":\"76191\",\"nomCom\":\"Cressy\",\"NOM_COM\":\"CRESSY\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16112,49.72486]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4702,\"INSEE_Comm\":\"80016\",\"nomCom\":\"Albert\",\"NOM_COM\":\"ALBERT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":257,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64831,50.00408]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4735,\"INSEE_Comm\":\"61031\",\"nomCom\":\"Beauch�ne\",\"NOM_COM\":\"BEAUCHENE\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.7271,48.68771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4746,\"INSEE_Comm\":\"60281\",\"nomCom\":\"Gournay-sur-Aronde\",\"NOM_COM\":\"GOURNAY-SUR-ARONDE\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69157,49.50064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4747,\"INSEE_Comm\":\"27045\",\"nomCom\":\"Bazincourt-sur-Epte\",\"NOM_COM\":\"BAZINCOURT-SUR-EPTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75769,49.32593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4755,\"INSEE_Comm\":\"61159\",\"nomCom\":\"Fay\",\"NOM_COM\":\"FAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40754,48.66132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4815,\"INSEE_Comm\":\"76122\",\"nomCom\":\"Callengeville\",\"NOM_COM\":\"CALLENGEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52206,49.82408]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4826,\"INSEE_Comm\":\"76427\",\"nomCom\":\"Mesni�res-en-Bray\",\"NOM_COM\":\"MESNIERES-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38684,49.76567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4843,\"INSEE_Comm\":\"80677\",\"nomCom\":\"Roisel\",\"NOM_COM\":\"ROISEL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09614,49.94505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4844,\"INSEE_Comm\":\"80182\",\"nomCom\":\"Cayeux-sur-Mer\",\"NOM_COM\":\"CAYEUX-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":353,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51551,50.17586]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4867,\"INSEE_Comm\":\"61317\",\"nomCom\":\"Org�res\",\"NOM_COM\":\"ORGERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34578,48.75248]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4868,\"INSEE_Comm\":\"14326\",\"nomCom\":\"Hermival-les-Vaux\",\"NOM_COM\":\"HERMIVAL-LES-VAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29144,49.16626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4892,\"INSEE_Comm\":\"60333\",\"nomCom\":\"Lachapelle-aux-Pots\",\"NOM_COM\":\"LACHAPELLE-AUX-POTS\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":95,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92182,49.44703]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4893,\"INSEE_Comm\":\"61282\",\"nomCom\":\"Monnai\",\"NOM_COM\":\"MONNAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40017,48.88696]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4915,\"INSEE_Comm\":\"61055\",\"nomCom\":\"Bouc�\",\"NOM_COM\":\"BOUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09555,48.63242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4930,\"INSEE_Comm\":\"76571\",\"nomCom\":\"Sainte-Croix-sur-Buchy\",\"NOM_COM\":\"SAINTE-CROIX-SUR-BUCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34092,49.56294]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4931,\"INSEE_Comm\":\"80456\",\"nomCom\":\"Lafresguimont-Saint-Martin\",\"NOM_COM\":\"LAFRESGUIMONT-SAINT-MARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81062,49.82337]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4965,\"INSEE_Comm\":\"14722\",\"nomCom\":\"Vacquerie\",\"NOM_COM\":\"LAVACQUERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.8557,49.09209]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4981,\"INSEE_Comm\":\"14762\",\"nomCom\":\"Vire\",\"NOM_COM\":\"VIRE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":240,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.88967,48.85131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":4996,\"INSEE_Comm\":\"61007\",\"nomCom\":\"Athis-de-l'Orne\",\"NOM_COM\":\"ATHIS-DE-L'ORNE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":97,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50962,48.7952]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5014,\"INSEE_Comm\":\"14370\",\"nomCom\":\"Molay-Littry\",\"NOM_COM\":\"LEMOLAY-LITTRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":152,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.88924,49.2344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5040,\"INSEE_Comm\":\"61344\",\"nomCom\":\"R�nes\",\"NOM_COM\":\"RANES\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.21765,48.64366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5043,\"INSEE_Comm\":\"61469\",\"nomCom\":\"Sept-Forges\",\"NOM_COM\":\"SEPT-FORGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54307,48.4943]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5060,\"INSEE_Comm\":\"60380\",\"nomCom\":\"Mareuil-sur-Ourcq\",\"NOM_COM\":\"MAREUIL-SUR-OURCQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07314,49.13905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5069,\"INSEE_Comm\":\"76065\",\"nomCom\":\"Beaussault\",\"NOM_COM\":\"BEAUSSAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57538,49.6894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5085,\"INSEE_Comm\":\"61036\",\"nomCom\":\"Belfonds\",\"NOM_COM\":\"BELFONDS\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10712,48.61087]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5129,\"INSEE_Comm\":\"14065\",\"nomCom\":\"Berni�res-le-Patry\",\"NOM_COM\":\"BERNIERES-LE-PATRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.74611,48.80922]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5134,\"INSEE_Comm\":\"27323\",\"nomCom\":\"Haye-Saint-Sylvestre\",\"NOM_COM\":\"LAHAYE-SAINT-SYLVESTRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59351,48.91101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5141,\"INSEE_Comm\":\"14714\",\"nomCom\":\"Tronquay\",\"NOM_COM\":\"LETRONQUAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.8198,49.22711]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5143,\"INSEE_Comm\":\"14727\",\"nomCom\":\"Vaubadon\",\"NOM_COM\":\"VAUBADON\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83609,49.2038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5152,\"INSEE_Comm\":\"76624\",\"nomCom\":\"Saint-Nicolas-d'Aliermont\",\"NOM_COM\":\"SAINT-NICOLAS-D'ALIERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":107,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23754,49.87421]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5168,\"INSEE_Comm\":\"61315\",\"nomCom\":\"Omm�el\",\"NOM_COM\":\"OMMEEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15212,48.80431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5176,\"INSEE_Comm\":\"14001\",\"nomCom\":\"Ablon\",\"NOM_COM\":\"ABLON\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.2868,49.39424]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5193,\"INSEE_Comm\":\"76418\",\"nomCom\":\"Maul�vrier-Sainte-Gertrude\",\"NOM_COM\":\"MAULEVRIER-SAINTE-GERTRUDE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70808,49.55474]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5244,\"INSEE_Comm\":\"76199\",\"nomCom\":\"Criquiers\",\"NOM_COM\":\"CRIQUIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70166,49.67605]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5267,\"INSEE_Comm\":\"27265\",\"nomCom\":\"Francheville\",\"NOM_COM\":\"FRANCHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":90,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83909,48.79421]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5269,\"INSEE_Comm\":\"61297\",\"nomCom\":\"Moulins-la-Marche\",\"NOM_COM\":\"MOULINS-LA-MARCHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47464,48.65028]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5271,\"INSEE_Comm\":\"76390\",\"nomCom\":\"Loges\",\"NOM_COM\":\"LESLOGES\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28474,49.69764]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5297,\"INSEE_Comm\":\"14478\",\"nomCom\":\"Orbec\",\"NOM_COM\":\"ORBEC\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38505,49.0237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5300,\"INSEE_Comm\":\"28127\",\"nomCom\":\"Dangeau\",\"NOM_COM\":\"DANGEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27634,48.19695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5302,\"INSEE_Comm\":\"27375\",\"nomCom\":\"Louviers\",\"NOM_COM\":\"LOUVIERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2798\",\"nomCan\":\"Louviers\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":558,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1534,49.22061]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5325,\"INSEE_Comm\":\"14445\",\"nomCom\":\"Montfiquet\",\"NOM_COM\":\"MONTFIQUET\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.88828,49.18552]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5326,\"INSEE_Comm\":\"80010\",\"nomCom\":\"Ailly-sur-Noye\",\"NOM_COM\":\"AILLY-SUR-NOYE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":136,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34699,49.74667]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5327,\"INSEE_Comm\":\"60639\",\"nomCom\":\"Till�\",\"NOM_COM\":\"TILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1178,49.46449]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5328,\"INSEE_Comm\":\"60082\",\"nomCom\":\"Bonneuil-les-Eaux\",\"NOM_COM\":\"BONNEUIL-LES-EAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24243,49.68085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5351,\"INSEE_Comm\":\"27003\",\"nomCom\":\"Acquigny\",\"NOM_COM\":\"ACQUIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17656,49.16487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5363,\"INSEE_Comm\":\"28012\",\"nomCom\":\"Arrou\",\"NOM_COM\":\"ARROU\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08598,48.11201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5365,\"INSEE_Comm\":\"78601\",\"nomCom\":\"Sonchamp\",\"NOM_COM\":\"SONCHAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86889,48.58809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5367,\"INSEE_Comm\":\"14655\",\"nomCom\":\"Saint-Pierre-Tarentaine\",\"NOM_COM\":\"SAINT-PIERRE-TARENTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.786,48.96148]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5379,\"INSEE_Comm\":\"28134\",\"nomCom\":\"Dreux\",\"NOM_COM\":\"DREUX\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"2897\",\"nomCan\":\"Dreux\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1032,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35932,48.74852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5408,\"INSEE_Comm\":\"27377\",\"nomCom\":\"Lyons-la-For�t\",\"NOM_COM\":\"LYONS-LA-FORET\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4736,49.39369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5426,\"INSEE_Comm\":\"14033\",\"nomCom\":\"Auvillars\",\"NOM_COM\":\"AUVILLARS\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07598,49.19692]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5433,\"INSEE_Comm\":\"60115\",\"nomCom\":\"Bulles\",\"NOM_COM\":\"BULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33513,49.4569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5448,\"INSEE_Comm\":\"61133\",\"nomCom\":\"Courtomer\",\"NOM_COM\":\"COURTOMER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34845,48.62532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5449,\"INSEE_Comm\":\"14658\",\"nomCom\":\"Saint-Sever-Calvados\",\"NOM_COM\":\"SAINT-SEVER-CALVADOS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.04661,48.8217]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5451,\"INSEE_Comm\":\"61420\",\"nomCom\":\"Sainte-Marie-la-Robert\",\"NOM_COM\":\"SAINTE-MARIE-LA-ROBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.14392,48.62612]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5468,\"INSEE_Comm\":\"60481\",\"nomCom\":\"Orrouy\",\"NOM_COM\":\"ORROUY\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85813,49.30714]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5469,\"INSEE_Comm\":\"60011\",\"nomCom\":\"Amy\",\"NOM_COM\":\"AMY\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.83395,49.64141]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5470,\"INSEE_Comm\":\"60313\",\"nomCom\":\"Hermes\",\"NOM_COM\":\"HERMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25605,49.3593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5492,\"INSEE_Comm\":\"27378\",\"nomCom\":\"Madeleine-de-Nonancourt\",\"NOM_COM\":\"LAMADELEINE-DE-NONANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21801,48.79015]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5543,\"INSEE_Comm\":\"60241\",\"nomCom\":\"Fontaine-Chaalis\",\"NOM_COM\":\"FONTAINE-CHAALIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66001,49.15474]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5567,\"INSEE_Comm\":\"80237\",\"nomCom\":\"D�muin\",\"NOM_COM\":\"DEMUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53965,49.81657]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5568,\"INSEE_Comm\":\"27056\",\"nomCom\":\"Bernay\",\"NOM_COM\":\"BERNAY\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"2796\",\"nomCan\":\"Bernay\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":290,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5896,49.09259]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5570,\"INSEE_Comm\":\"76657\",\"nomCom\":\"Saint-Vigor-d'Ymonville\",\"NOM_COM\":\"SAINT-VIGOR-D'YMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3477,49.46885]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5591,\"INSEE_Comm\":\"61028\",\"nomCom\":\"Bazoches-au-Houlme\",\"NOM_COM\":\"BAZOCHES-AU-HOULME\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26337,48.82881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5592,\"INSEE_Comm\":\"61253\",\"nomCom\":\"Marmouill�\",\"NOM_COM\":\"MARMOUILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18699,48.67774]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5593,\"INSEE_Comm\":\"61513\",\"nomCom\":\"Yvrandes\",\"NOM_COM\":\"YVRANDES\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76419,48.71864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5595,\"INSEE_Comm\":\"80212\",\"nomCom\":\"Corbie\",\"NOM_COM\":\"CORBIE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":230,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49499,49.92021]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5610,\"INSEE_Comm\":\"76351\",\"nomCom\":\"Havre\",\"NOM_COM\":\"LEHAVRE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"7698\",\"nomCan\":\"Havre\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4161,\"ratioInvFd\":5},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14019,49.49842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5624,\"INSEE_Comm\":\"76540\",\"nomCom\":\"Rouen\",\"NOM_COM\":\"ROUEN\",\"Statut\":\"Pr?fectureder?gion\",\"idCan\":\"7699\",\"nomCan\":\"Rouen\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4756,\"ratioInvFd\":5},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09358,49.44133]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5649,\"INSEE_Comm\":\"76727\",\"nomCom\":\"Vatteville-la-Rue\",\"NOM_COM\":\"VATTEVILLE-LA-RUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":89,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68414,49.45359]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5689,\"INSEE_Comm\":\"61292\",\"nomCom\":\"Montsecret\",\"NOM_COM\":\"MONTSECRET\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67723,48.79641]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5695,\"INSEE_Comm\":\"14443\",\"nomCom\":\"Montchauvet\",\"NOM_COM\":\"MONTCHAUVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73583,48.94662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5701,\"INSEE_Comm\":\"28183\",\"nomCom\":\"Gommerville\",\"NOM_COM\":\"GOMMERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95281,48.34308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5705,\"INSEE_Comm\":\"27444\",\"nomCom\":\"Noyer-en-Ouche\",\"NOM_COM\":\"LENOYER-EN-OUCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76158,49.00605]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5725,\"INSEE_Comm\":\"14342\",\"nomCom\":\"Isigny-sur-Mer\",\"NOM_COM\":\"ISIGNY-SUR-MER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":88,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.10256,49.30571]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5735,\"INSEE_Comm\":\"27251\",\"nomCom\":\"Fontaine-l'Abb�\",\"NOM_COM\":\"FONTAINE-L'ABBE\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68797,49.08833]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5741,\"INSEE_Comm\":\"14559\",\"nomCom\":\"Saint-Aubin-des-Bois\",\"NOM_COM\":\"SAINT-AUBIN-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.13126,48.83228]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5745,\"INSEE_Comm\":\"14090\",\"nomCom\":\"Boulon\",\"NOM_COM\":\"BOULON\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37827,49.04749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5747,\"INSEE_Comm\":\"14697\",\"nomCom\":\"Oudon\",\"NOM_COM\":\"L'OUDON\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03296,48.96254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5748,\"INSEE_Comm\":\"61308\",\"nomCom\":\"Neuvy-au-Houlme\",\"NOM_COM\":\"NEUVY-AU-HOULME\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.19026,48.82173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5765,\"INSEE_Comm\":\"60432\",\"nomCom\":\"Mortefontaine\",\"NOM_COM\":\"MORTEFONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60875,49.12232]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5771,\"INSEE_Comm\":\"76255\",\"nomCom\":\"Eu\",\"NOM_COM\":\"EU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":140,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42863,50.04132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5772,\"INSEE_Comm\":\"60658\",\"nomCom\":\"Vauciennes\",\"NOM_COM\":\"VAUCIENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01623,49.22913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5773,\"INSEE_Comm\":\"60454\",\"nomCom\":\"Neuville-en-Hez\",\"NOM_COM\":\"LANEUVILLE-EN-HEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32693,49.3865]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5774,\"INSEE_Comm\":\"60403\",\"nomCom\":\"Milly-sur-Th�rain\",\"NOM_COM\":\"MILLY-SUR-THERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":89,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01408,49.50906]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5786,\"INSEE_Comm\":\"27549\",\"nomCom\":\"Saint-Germain-Village\",\"NOM_COM\":\"SAINT-GERMAIN-VILLAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":167,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49871,49.34481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5789,\"INSEE_Comm\":\"78530\",\"nomCom\":\"Rosay\",\"NOM_COM\":\"ROSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68396,48.91131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5790,\"INSEE_Comm\":\"80280\",\"nomCom\":\"Ercourt\",\"NOM_COM\":\"ERCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72408,50.04057]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5795,\"INSEE_Comm\":\"61169\",\"nomCom\":\"Flers\",\"NOM_COM\":\"FLERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6196\",\"nomCan\":\"Flers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":283,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56252,48.73994]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5799,\"INSEE_Comm\":\"28041\",\"nomCom\":\"Blandainville\",\"NOM_COM\":\"BLANDAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29204,48.31538]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5809,\"INSEE_Comm\":\"14279\",\"nomCom\":\"Fontenermont\",\"NOM_COM\":\"FONTENERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.10019,48.82115]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5820,\"INSEE_Comm\":\"80325\",\"nomCom\":\"Fontaine-l�s-Cappy\",\"NOM_COM\":\"FONTAINE-LES-CAPPY\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77659,49.8992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5830,\"INSEE_Comm\":\"76182\",\"nomCom\":\"Cliponville\",\"NOM_COM\":\"CLIPONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65812,49.67347]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5832,\"INSEE_Comm\":\"28269\",\"nomCom\":\"Morancez\",\"NOM_COM\":\"MORANCEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":81,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50334,48.39656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5841,\"INSEE_Comm\":\"60192\",\"nomCom\":\"Cuy\",\"NOM_COM\":\"CUY\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.90969,49.58554]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5842,\"INSEE_Comm\":\"28108\",\"nomCom\":\"Cormainville\",\"NOM_COM\":\"CORMAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60621,48.13123]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5871,\"INSEE_Comm\":\"28187\",\"nomCom\":\"Guainville\",\"NOM_COM\":\"GUAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.483,48.92189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5874,\"INSEE_Comm\":\"95633\",\"nomCom\":\"Vaudherland\",\"NOM_COM\":\"VAUDHERLAND\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48675,49.0004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5881,\"INSEE_Comm\":\"27558\",\"nomCom\":\"Saint-L�ger-du-Gennetey\",\"NOM_COM\":\"SAINT-LEGER-DU-GENNETEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75222,49.28262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5888,\"INSEE_Comm\":\"76162\",\"nomCom\":\"Catelier\",\"NOM_COM\":\"LECATELIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15668,49.75701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5890,\"INSEE_Comm\":\"76106\",\"nomCom\":\"Bois-d'Ennebourg\",\"NOM_COM\":\"BOIS-D'ENNEBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25875,49.4276]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5911,\"INSEE_Comm\":\"95323\",\"nomCom\":\"Jouy-le-Moutier\",\"NOM_COM\":\"JOUY-LE-MOUTIER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9539\",\"nomCan\":\"Hautil\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":105,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03408,49.01136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5916,\"INSEE_Comm\":\"78160\",\"nomCom\":\"Chevreuse\",\"NOM_COM\":\"CHEVREUSE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":107,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03715,48.70715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5924,\"INSEE_Comm\":\"14419\",\"nomCom\":\"Mesnil-Eudes\",\"NOM_COM\":\"LEMESNIL-EUDES\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.17507,49.0934]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5935,\"INSEE_Comm\":\"76264\",\"nomCom\":\"Flamanville\",\"NOM_COM\":\"FLAMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83201,49.63127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5946,\"INSEE_Comm\":\"14695\",\"nomCom\":\"Torteval-Quesnay\",\"NOM_COM\":\"TORTEVAL-QUESNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73014,49.14982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5955,\"INSEE_Comm\":\"95205\",\"nomCom\":\"�couen\",\"NOM_COM\":\"ECOUEN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9508\",\"nomCan\":\"�couen\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":83,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38486,49.02606]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5956,\"INSEE_Comm\":\"14476\",\"nomCom\":\"Olendon\",\"NOM_COM\":\"OLENDON\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17314,48.96858]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5961,\"INSEE_Comm\":\"14587\",\"nomCom\":\"Saint-Germain-la-Blanche-Herbe\",\"NOM_COM\":\"SAINT-GERMAIN-LA-BLANCHE-HERBE\",\"Statut\":\"Communesimple\",\"idCan\":\"1409\",\"nomCan\":\"Caen2eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4216,49.1956]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5971,\"INSEE_Comm\":\"80569\",\"nomCom\":\"Morcourt\",\"NOM_COM\":\"MORCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.65779,49.88569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5993,\"INSEE_Comm\":\"14427\",\"nomCom\":\"Mesnil-Villement\",\"NOM_COM\":\"LEMESNIL-VILLEMENT\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37658,48.85639]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5998,\"INSEE_Comm\":\"14157\",\"nomCom\":\"Cheux\",\"NOM_COM\":\"CHEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":79,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52963,49.16903]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":5999,\"INSEE_Comm\":\"76140\",\"nomCom\":\"Brametot\",\"NOM_COM\":\"BRAMETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86985,49.78208]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6022,\"INSEE_Comm\":\"60653\",\"nomCom\":\"Valescourt\",\"NOM_COM\":\"VALESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43607,49.48527]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6084,\"INSEE_Comm\":\"80092\",\"nomCom\":\"Bertangles\",\"NOM_COM\":\"BERTANGLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2915,49.97332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6090,\"INSEE_Comm\":\"76734\",\"nomCom\":\"Vergetot\",\"NOM_COM\":\"VERGETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28186,49.61159]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6092,\"INSEE_Comm\":\"80484\",\"nomCom\":\"Liomer\",\"NOM_COM\":\"LIOMER\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80868,49.85912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6112,\"INSEE_Comm\":\"61284\",\"nomCom\":\"Montchevrel\",\"NOM_COM\":\"MONTCHEVREL\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33445,48.58157]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6118,\"INSEE_Comm\":\"27544\",\"nomCom\":\"Saint-Germain-de-Fresney\",\"NOM_COM\":\"SAINT-GERMAIN-DE-FRESNEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28736,48.95852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6127,\"INSEE_Comm\":\"76161\",\"nomCom\":\"Carville-Pot-de-Fer\",\"NOM_COM\":\"CARVILLE-POT-DE-FER\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72316,49.71867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6131,\"INSEE_Comm\":\"28229\",\"nomCom\":\"Mainvilliers\",\"NOM_COM\":\"MAINVILLIERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2830\",\"nomCan\":\"Mainvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":524,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44582,48.46254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6132,\"INSEE_Comm\":\"95628\",\"nomCom\":\"Valmondois\",\"NOM_COM\":\"VALMONDOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18016,49.09765]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6147,\"INSEE_Comm\":\"27256\",\"nomCom\":\"For�t-du-Parc\",\"NOM_COM\":\"LAFORET-DU-PARC\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24036,48.92761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6149,\"INSEE_Comm\":\"27487\",\"nomCom\":\"Radepont\",\"NOM_COM\":\"RADEPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32421,49.35312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6154,\"INSEE_Comm\":\"14665\",\"nomCom\":\"Sallenelles\",\"NOM_COM\":\"SALLENELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.23342,49.2637]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6155,\"INSEE_Comm\":\"60458\",\"nomCom\":\"Neuville-sur-Oudeuil\",\"NOM_COM\":\"LANEUVILLE-SUR-OUDEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01365,49.56896]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6162,\"INSEE_Comm\":\"76651\",\"nomCom\":\"Saint-Sylvain\",\"NOM_COM\":\"SAINT-SYLVAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65965,49.8485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6174,\"INSEE_Comm\":\"27543\",\"nomCom\":\"Saint-Georges-Motel\",\"NOM_COM\":\"SAINT-GEORGES-MOTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35958,48.79226]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6190,\"INSEE_Comm\":\"61217\",\"nomCom\":\"Lande-de-Loug�\",\"NOM_COM\":\"LALANDE-DE-LOUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24992,48.70108]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6225,\"INSEE_Comm\":\"76206\",\"nomCom\":\"Cuverville\",\"NOM_COM\":\"CUVERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26408,49.66555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6227,\"INSEE_Comm\":\"27022\",\"nomCom\":\"Aubevoye\",\"NOM_COM\":\"AUBEVOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2719\",\"nomCan\":\"Gaillon\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":394,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3333,49.17516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6246,\"INSEE_Comm\":\"27220\",\"nomCom\":\"�pieds\",\"NOM_COM\":\"EPIEDS\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3958,48.93492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6247,\"INSEE_Comm\":\"28232\",\"nomCom\":\"Manou\",\"NOM_COM\":\"MANOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96294,48.53639]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6249,\"INSEE_Comm\":\"28239\",\"nomCom\":\"Marville-Moutiers-Br�l�\",\"NOM_COM\":\"MARVILLE-MOUTIERS-BRULE\",\"Statut\":\"Communesimple\",\"idCan\":\"2828\",\"nomCan\":\"Dreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.37887,48.67485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6258,\"INSEE_Comm\":\"80780\",\"nomCom\":\"Vaudricourt\",\"NOM_COM\":\"VAUDRICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54855,50.11475]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6261,\"INSEE_Comm\":\"76546\",\"nomCom\":\"Royville\",\"NOM_COM\":\"ROYVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95301,49.77923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6265,\"INSEE_Comm\":\"78036\",\"nomCom\":\"Autouillet\",\"NOM_COM\":\"AUTOUILLET\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.797,48.84393]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6283,\"INSEE_Comm\":\"61325\",\"nomCom\":\"Perri�re\",\"NOM_COM\":\"LAPERRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44142,48.39776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6287,\"INSEE_Comm\":\"14103\",\"nomCom\":\"Breuil-en-Bessin\",\"NOM_COM\":\"LEBREUIL-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.85544,49.25444]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6292,\"INSEE_Comm\":\"27120\",\"nomCom\":\"Burey\",\"NOM_COM\":\"BUREY\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94452,48.99228]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6294,\"INSEE_Comm\":\"95563\",\"nomCom\":\"Saint-Leu-la-For�t\",\"NOM_COM\":\"SAINT-LEU-LA-FORET\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9520\",\"nomCan\":\"Saint-Leu-la-For�t\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":188,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24676,49.02022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6317,\"INSEE_Comm\":\"61196\",\"nomCom\":\"Gu�-de-la-Cha�ne\",\"NOM_COM\":\"LEGUE-DE-LA-CHAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50971,48.37251]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6318,\"INSEE_Comm\":\"28072\",\"nomCom\":\"Champrond-en-Perchet\",\"NOM_COM\":\"CHAMPROND-EN-PERCHET\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88851,48.30852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6339,\"INSEE_Comm\":\"60637\",\"nomCom\":\"Thury-en-Valois\",\"NOM_COM\":\"THURY-EN-VALOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02876,49.15168]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6348,\"INSEE_Comm\":\"80464\",\"nomCom\":\"Lanch�res\",\"NOM_COM\":\"LANCHERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55348,50.16283]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6369,\"INSEE_Comm\":\"14664\",\"nomCom\":\"Sallen\",\"NOM_COM\":\"SALLEN\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83988,49.11695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6370,\"INSEE_Comm\":\"27681\",\"nomCom\":\"Vernon\",\"NOM_COM\":\"VERNON\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2797\",\"nomCan\":\"Vernon\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":845,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48501,49.08797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6371,\"INSEE_Comm\":\"27613\",\"nomCom\":\"Saint-Vincent-du-Boulay\",\"NOM_COM\":\"SAINT-VINCENT-DU-BOULAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48989,49.10093]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6372,\"INSEE_Comm\":\"61029\",\"nomCom\":\"Bazoches-sur-Ho�ne\",\"NOM_COM\":\"BAZOCHES-SUR-HOENE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47036,48.55107]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6374,\"INSEE_Comm\":\"61396\",\"nomCom\":\"Saint-Germain-de-Martigny\",\"NOM_COM\":\"SAINT-GERMAIN-DE-MARTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46713,48.58739]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6380,\"INSEE_Comm\":\"80051\",\"nomCom\":\"Bailleul\",\"NOM_COM\":\"BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85505,50.02585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6381,\"INSEE_Comm\":\"78263\",\"nomCom\":\"Gambais\",\"NOM_COM\":\"GAMBAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":110,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67652,48.77961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6390,\"INSEE_Comm\":\"76738\",\"nomCom\":\"Vieux-Manoir\",\"NOM_COM\":\"VIEUX-MANOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29487,49.56561]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6422,\"INSEE_Comm\":\"14380\",\"nomCom\":\"Loucelles\",\"NOM_COM\":\"LOUCELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57798,49.22569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6424,\"INSEE_Comm\":\"60012\",\"nomCom\":\"Andeville\",\"NOM_COM\":\"ANDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":94,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16836,49.25756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6427,\"INSEE_Comm\":\"80649\",\"nomCom\":\"Quend\",\"NOM_COM\":\"QUEND\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":344,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61115,50.32165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6434,\"INSEE_Comm\":\"14077\",\"nomCom\":\"Blangy-le-Ch�teau\",\"NOM_COM\":\"BLANGY-LE-CHATEAU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28367,49.24701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6454,\"INSEE_Comm\":\"28105\",\"nomCom\":\"Combres\",\"NOM_COM\":\"COMBRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06041,48.33669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6475,\"INSEE_Comm\":\"60578\",\"nomCom\":\"Saintines\",\"NOM_COM\":\"SAINTINES\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.7678,49.30204]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6477,\"INSEE_Comm\":\"60145\",\"nomCom\":\"Chelles\",\"NOM_COM\":\"CHELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.03919,49.34661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6518,\"INSEE_Comm\":\"80131\",\"nomCom\":\"Boves\",\"NOM_COM\":\"BOVES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":203,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3833,49.8417]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6520,\"INSEE_Comm\":\"27310\",\"nomCom\":\"Hacqueville\",\"NOM_COM\":\"HACQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55751,49.28187]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6553,\"INSEE_Comm\":\"61138\",\"nomCom\":\"Croisilles\",\"NOM_COM\":\"CROISILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26712,48.76262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6564,\"INSEE_Comm\":\"76459\",\"nomCom\":\"Nesle-Hodeng\",\"NOM_COM\":\"NESLE-HODENG\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52185,49.70397]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6585,\"INSEE_Comm\":\"14151\",\"nomCom\":\"Champ-du-Boult\",\"NOM_COM\":\"CHAMP-DU-BOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.99994,48.79005]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6586,\"INSEE_Comm\":\"14350\",\"nomCom\":\"Lande-sur-Dr�me\",\"NOM_COM\":\"LALANDE-SUR-DROME\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86002,49.07326]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6590,\"INSEE_Comm\":\"80191\",\"nomCom\":\"Chilly\",\"NOM_COM\":\"CHILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76984,49.79647]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6591,\"INSEE_Comm\":\"60698\",\"nomCom\":\"Wacquemoulin\",\"NOM_COM\":\"WACQUEMOULIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62145,49.50823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6597,\"INSEE_Comm\":\"27338\",\"nomCom\":\"Hogues\",\"NOM_COM\":\"LESHOGUES\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40794,49.42024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6612,\"INSEE_Comm\":\"28201\",\"nomCom\":\"Jouy\",\"NOM_COM\":\"JOUY\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54597,48.5156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6623,\"INSEE_Comm\":\"14178\",\"nomCom\":\"Corbon\",\"NOM_COM\":\"CORBON\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.02815,49.14545]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6648,\"INSEE_Comm\":\"80620\",\"nomCom\":\"P�ronne\",\"NOM_COM\":\"PERONNE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":229,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.93001,49.92832]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6691,\"INSEE_Comm\":\"14060\",\"nomCom\":\"B�nouville\",\"NOM_COM\":\"BENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":146,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28785,49.2437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6699,\"INSEE_Comm\":\"76751\",\"nomCom\":\"Y�bleron\",\"NOM_COM\":\"YEBLERON\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53382,49.63097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6732,\"INSEE_Comm\":\"28335\",\"nomCom\":\"Saint-�liph\",\"NOM_COM\":\"SAINT-ELIPH\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":59,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03616,48.44969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6750,\"INSEE_Comm\":\"61155\",\"nomCom\":\"�pinay-le-Comte\",\"NOM_COM\":\"L'EPINAY-LE-COMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.79551,48.47541]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6751,\"INSEE_Comm\":\"61455\",\"nomCom\":\"Saint-Sim�on\",\"NOM_COM\":\"SAINT-SIMEON\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75192,48.46034]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6753,\"INSEE_Comm\":\"61201\",\"nomCom\":\"Haute-Chapelle\",\"NOM_COM\":\"LAHAUTE-CHAPELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.6758,48.60134]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6759,\"INSEE_Comm\":\"60116\",\"nomCom\":\"Bury\",\"NOM_COM\":\"BURY\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":65,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3587,49.31279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6773,\"INSEE_Comm\":\"80522\",\"nomCom\":\"Mazis\",\"NOM_COM\":\"LEMAZIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76333,49.87214]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6786,\"INSEE_Comm\":\"14372\",\"nomCom\":\"Livry\",\"NOM_COM\":\"LIVRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76845,49.11344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6796,\"INSEE_Comm\":\"76208\",\"nomCom\":\"Cuy-Saint-Fiacre\",\"NOM_COM\":\"CUY-SAINT-FIACRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69169,49.51052]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6807,\"INSEE_Comm\":\"60074\",\"nomCom\":\"Blaincourt-l�s-Pr�cy\",\"NOM_COM\":\"BLAINCOURT-LES-PRECY\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3445,49.22797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6808,\"INSEE_Comm\":\"80832\",\"nomCom\":\"Yvrench\",\"NOM_COM\":\"YVRENCH\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01564,50.18468]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6825,\"INSEE_Comm\":\"27051\",\"nomCom\":\"Beaumont-le-Roger\",\"NOM_COM\":\"BEAUMONT-LE-ROGER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":152,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75484,49.05921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6827,\"INSEE_Comm\":\"61073\",\"nomCom\":\"Carneille\",\"NOM_COM\":\"LACARNEILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44575,48.77144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6843,\"INSEE_Comm\":\"61386\",\"nomCom\":\"Saint-Evroult-Notre-Dame-du-Bois\",\"NOM_COM\":\"SAINT-EVROULT-NOTRE-DAME-DU-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45249,48.7791]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6846,\"INSEE_Comm\":\"27166\",\"nomCom\":\"Cond�-sur-Iton\",\"NOM_COM\":\"CONDE-SUR-ITON\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96714,48.82888]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6852,\"INSEE_Comm\":\"60091\",\"nomCom\":\"Bouillancy\",\"NOM_COM\":\"BOUILLANCY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91176,49.11769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6875,\"INSEE_Comm\":\"14089\",\"nomCom\":\"Bougy\",\"NOM_COM\":\"BOUGY\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52237,49.10861]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6909,\"INSEE_Comm\":\"27230\",\"nomCom\":\"�zy-sur-Eure\",\"NOM_COM\":\"EZY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":202,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41263,48.87098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6925,\"INSEE_Comm\":\"27213\",\"nomCom\":\"�cos\",\"NOM_COM\":\"ECOS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":59,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59773,49.15154]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6930,\"INSEE_Comm\":\"76585\",\"nomCom\":\"Saint-Gilles-de-Cr�tot\",\"NOM_COM\":\"SAINT-GILLES-DE-CRETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6527,49.55817]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6931,\"INSEE_Comm\":\"61045\",\"nomCom\":\"Bivilliers\",\"NOM_COM\":\"BIVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61519,48.57305]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6932,\"INSEE_Comm\":\"14715\",\"nomCom\":\"Trouville-sur-Mer\",\"NOM_COM\":\"TROUVILLE-SUR-MER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":346,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10212,49.37213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6938,\"INSEE_Comm\":\"27569\",\"nomCom\":\"Saint-Martin-du-Tilleul\",\"NOM_COM\":\"SAINT-MARTIN-DU-TILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52657,49.10626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6950,\"INSEE_Comm\":\"76428\",\"nomCom\":\"Mesnil-Durdent\",\"NOM_COM\":\"LEMESNIL-DURDENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77114,49.81772]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6952,\"INSEE_Comm\":\"80462\",\"nomCom\":\"Lamotte-Buleux\",\"NOM_COM\":\"LAMOTTE-BULEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83565,50.18657]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6959,\"INSEE_Comm\":\"78325\",\"nomCom\":\"Jumeauville\",\"NOM_COM\":\"JUMEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78399,48.90661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6974,\"INSEE_Comm\":\"28302\",\"nomCom\":\"Pontgouin\",\"NOM_COM\":\"PONTGOUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1455,48.49146]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":6989,\"INSEE_Comm\":\"78158\",\"nomCom\":\"Chesnay\",\"NOM_COM\":\"LECHESNAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7832\",\"nomCan\":\"Chesnay\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":295,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13015,48.82724]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7001,\"INSEE_Comm\":\"80829\",\"nomCom\":\"Y\",\"NOM_COM\":\"Y\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98612,49.80213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7009,\"INSEE_Comm\":\"60420\",\"nomCom\":\"Montjavoult\",\"NOM_COM\":\"MONTJAVOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79324,49.21638]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7020,\"INSEE_Comm\":\"28191\",\"nomCom\":\"Hanches\",\"NOM_COM\":\"HANCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":140,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64822,48.59677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7026,\"INSEE_Comm\":\"14548\",\"nomCom\":\"Rucqueville\",\"NOM_COM\":\"RUCQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58611,49.25806]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7034,\"INSEE_Comm\":\"95529\",\"nomCom\":\"Ronquerolles\",\"NOM_COM\":\"RONQUEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21342,49.1677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7042,\"INSEE_Comm\":\"28124\",\"nomCom\":\"Dampierre-sur-Avre\",\"NOM_COM\":\"DAMPIERRE-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14269,48.75749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7061,\"INSEE_Comm\":\"78646\",\"nomCom\":\"Versailles\",\"NOM_COM\":\"VERSAILLES\",\"Statut\":\"Pr?fecture\",\"idCan\":\"7899\",\"nomCan\":\"Versailles\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1096,\"ratioInvFd\":5},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1179,48.80257]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7065,\"INSEE_Comm\":\"27427\",\"nomCom\":\"Neaufles-Auvergny\",\"NOM_COM\":\"NEAUFLES-AUVERGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74448,48.87435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7066,\"INSEE_Comm\":\"27457\",\"nomCom\":\"Piseux\",\"NOM_COM\":\"PISEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96575,48.77212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7069,\"INSEE_Comm\":\"27537\",\"nomCom\":\"Saint-�tienne-du-Vauvray\",\"NOM_COM\":\"SAINT-ETIENNE-DU-VAUVRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2721\",\"nomCan\":\"Louviers-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21541,49.24221]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7072,\"INSEE_Comm\":\"76128\",\"nomCom\":\"Bosville\",\"NOM_COM\":\"BOSVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68423,49.76291]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7075,\"INSEE_Comm\":\"27319\",\"nomCom\":\"Haye-de-Routot\",\"NOM_COM\":\"LAHAYE-DE-ROUTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72808,49.40301]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7088,\"INSEE_Comm\":\"61319\",\"nomCom\":\"Origny-le-Roux\",\"NOM_COM\":\"ORIGNY-LE-ROUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41754,48.33456]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7090,\"INSEE_Comm\":\"61486\",\"nomCom\":\"Tinchebray\",\"NOM_COM\":\"TINCHEBRAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73645,48.75589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7102,\"INSEE_Comm\":\"61296\",\"nomCom\":\"Moulicent\",\"NOM_COM\":\"MOULICENT\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76821,48.56486]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7105,\"INSEE_Comm\":\"61464\",\"nomCom\":\"S�es\",\"NOM_COM\":\"SEES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":162,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16909,48.60485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7107,\"INSEE_Comm\":\"14149\",\"nomCom\":\"Cesny-aux-Vignes\",\"NOM_COM\":\"CESNY-AUX-VIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12114,49.08614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7116,\"INSEE_Comm\":\"27663\",\"nomCom\":\"Troncq\",\"NOM_COM\":\"LETRONCQ\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91687,49.19289]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7125,\"INSEE_Comm\":\"78451\",\"nomCom\":\"N�zel\",\"NOM_COM\":\"NEZEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83928,48.94224]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7128,\"INSEE_Comm\":\"60497\",\"nomCom\":\"Plessier-sur-Bulles\",\"NOM_COM\":\"LEPLESSIER-SUR-BULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31826,49.49197]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7133,\"INSEE_Comm\":\"27169\",\"nomCom\":\"Conteville\",\"NOM_COM\":\"CONTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39128,49.4175]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7148,\"INSEE_Comm\":\"76564\",\"nomCom\":\"Saint-Aubin-sur-Mer\",\"NOM_COM\":\"SAINT-AUBIN-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87593,49.88894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7162,\"INSEE_Comm\":\"28034\",\"nomCom\":\"Berch�res-Saint-Germain\",\"NOM_COM\":\"BERCHERES-SAINT-GERMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46818,48.53507]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7165,\"INSEE_Comm\":\"61352\",\"nomCom\":\"R�nai\",\"NOM_COM\":\"RONAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13524,48.8105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7166,\"INSEE_Comm\":\"61145\",\"nomCom\":\"Domfront\",\"NOM_COM\":\"DOMFRONT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":120,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.6139,48.58258]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7184,\"INSEE_Comm\":\"78418\",\"nomCom\":\"Montesson\",\"NOM_COM\":\"MONTESSON\",\"Statut\":\"Communesimple\",\"idCan\":\"7830\",\"nomCan\":\"V�sinet\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":464,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13993,48.91723]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7205,\"INSEE_Comm\":\"61232\",\"nomCom\":\"Lonlay-l'Abbaye\",\"NOM_COM\":\"LONLAY-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.70474,48.65023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7215,\"INSEE_Comm\":\"61300\",\"nomCom\":\"Moutiers-au-Perche\",\"NOM_COM\":\"MOUTIERS-AU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85666,48.48317]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7219,\"INSEE_Comm\":\"60619\",\"nomCom\":\"Silly-le-Long\",\"NOM_COM\":\"SILLY-LE-LONG\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78742,49.10847]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7222,\"INSEE_Comm\":\"14285\",\"nomCom\":\"Fournet\",\"NOM_COM\":\"LEFOURNET\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11172,49.20029]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7223,\"INSEE_Comm\":\"80707\",\"nomCom\":\"Saint-L�ger-sur-Bresle\",\"NOM_COM\":\"SAINT-LEGER-SUR-BRESLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72125,49.87137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7224,\"INSEE_Comm\":\"60415\",\"nomCom\":\"Mont�pilloy\",\"NOM_COM\":\"MONTEPILLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70933,49.21392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7225,\"INSEE_Comm\":\"80482\",\"nomCom\":\"Limeux\",\"NOM_COM\":\"LIMEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80811,50.01676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7229,\"INSEE_Comm\":\"76166\",\"nomCom\":\"Caule-Sainte-Beuve\",\"NOM_COM\":\"LECAULE-SAINTE-BEUVE\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5926,49.77556]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7234,\"INSEE_Comm\":\"78264\",\"nomCom\":\"Gambaiseuil\",\"NOM_COM\":\"GAMBAISEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72527,48.75655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7253,\"INSEE_Comm\":\"60047\",\"nomCom\":\"Baron\",\"NOM_COM\":\"BARON\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73481,49.17545]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7280,\"INSEE_Comm\":\"60279\",\"nomCom\":\"Gondreville\",\"NOM_COM\":\"GONDREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94865,49.22014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7281,\"INSEE_Comm\":\"80332\",\"nomCom\":\"Forest-Montiers\",\"NOM_COM\":\"FOREST-MONTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73666,50.24422]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7282,\"INSEE_Comm\":\"76669\",\"nomCom\":\"Sausseuzemare-en-Caux\",\"NOM_COM\":\"SAUSSEUZEMARE-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35002,49.67101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7289,\"INSEE_Comm\":\"80317\",\"nomCom\":\"Fleury\",\"NOM_COM\":\"FLEURY\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11454,49.73572]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7319,\"INSEE_Comm\":\"76621\",\"nomCom\":\"Saint-Martin-Osmonville\",\"NOM_COM\":\"SAINT-MARTIN-OSMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":85,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3009,49.64173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7324,\"INSEE_Comm\":\"61176\",\"nomCom\":\"Francheville\",\"NOM_COM\":\"FRANCHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.06013,48.63839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7329,\"INSEE_Comm\":\"60027\",\"nomCom\":\"Auger-Saint-Vincent\",\"NOM_COM\":\"AUGER-SAINT-VINCENT\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81319,49.21252]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7336,\"INSEE_Comm\":\"27655\",\"nomCom\":\"Tourville-sur-Pont-Audemer\",\"NOM_COM\":\"TOURVILLE-SUR-PONT-AUDEMER\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51736,49.32127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7346,\"INSEE_Comm\":\"28237\",\"nomCom\":\"Marolles-les-Buis\",\"NOM_COM\":\"MAROLLES-LES-BUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94299,48.36615]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7373,\"INSEE_Comm\":\"80782\",\"nomCom\":\"Vaux-en-Ami�nois\",\"NOM_COM\":\"VAUX-EN-AMIENOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24284,49.97263]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7389,\"INSEE_Comm\":\"28179\",\"nomCom\":\"Germignonville\",\"NOM_COM\":\"GERMIGNONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74195,48.19314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7421,\"INSEE_Comm\":\"60429\",\"nomCom\":\"Morangles\",\"NOM_COM\":\"MORANGLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30537,49.19487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7453,\"INSEE_Comm\":\"28270\",\"nomCom\":\"Moriers\",\"NOM_COM\":\"MORIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44019,48.22069]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7474,\"INSEE_Comm\":\"95452\",\"nomCom\":\"Nointel\",\"NOM_COM\":\"NOINTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":91,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29435,49.12887]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7481,\"INSEE_Comm\":\"95355\",\"nomCom\":\"Magny-en-Vexin\",\"NOM_COM\":\"MAGNY-EN-VEXIN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":137,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81038,49.15891]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7507,\"INSEE_Comm\":\"61005\",\"nomCom\":\"Appenai-sous-Bell�me\",\"NOM_COM\":\"APPENAI-SOUS-BELLEME\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56433,48.34038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7524,\"INSEE_Comm\":\"28204\",\"nomCom\":\"Langey\",\"NOM_COM\":\"LANGEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18485,48.04863]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7526,\"INSEE_Comm\":\"27305\",\"nomCom\":\"Gu�roulde\",\"NOM_COM\":\"LAGUEROULDE\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8744,48.81944]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7571,\"INSEE_Comm\":\"27031\",\"nomCom\":\"Aviron\",\"NOM_COM\":\"AVIRON\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12004,49.05663]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7575,\"INSEE_Comm\":\"61468\",\"nomCom\":\"Sentilly\",\"NOM_COM\":\"SENTILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12073,48.76702]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7577,\"INSEE_Comm\":\"14098\",\"nomCom\":\"Bretteville-l'Orgueilleuse\",\"NOM_COM\":\"BRETTEVILLE-L'ORGUEILLEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":130,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.51695,49.21569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7581,\"INSEE_Comm\":\"78255\",\"nomCom\":\"Freneuse\",\"NOM_COM\":\"FRENEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":220,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61035,49.0495]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7591,\"INSEE_Comm\":\"76273\",\"nomCom\":\"Fontaine-sous-Pr�aux\",\"NOM_COM\":\"FONTAINE-SOUS-PREAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16912,49.48597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7614,\"INSEE_Comm\":\"61214\",\"nomCom\":\"Aigle\",\"NOM_COM\":\"L'AIGLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6198\",\"nomCan\":\"Aigle\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":237,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61109,48.75599]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7624,\"INSEE_Comm\":\"60208\",\"nomCom\":\"�nencourt-L�age\",\"NOM_COM\":\"ENENCOURT-LEAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84443,49.30458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7634,\"INSEE_Comm\":\"76582\",\"nomCom\":\"Saint-Germain-d'�tables\",\"NOM_COM\":\"SAINT-GERMAIN-D'ETABLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18138,49.83728]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7674,\"INSEE_Comm\":\"61347\",\"nomCom\":\"R�senlieu\",\"NOM_COM\":\"RESENLIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27693,48.79009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7678,\"INSEE_Comm\":\"27170\",\"nomCom\":\"Cormeilles\",\"NOM_COM\":\"CORMEILLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38455,49.25173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7679,\"INSEE_Comm\":\"60286\",\"nomCom\":\"Grandvilliers\",\"NOM_COM\":\"GRANDVILLIERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":90,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93492,49.66602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7685,\"INSEE_Comm\":\"76650\",\"nomCom\":\"Saint-Sauveur-d'�malleville\",\"NOM_COM\":\"SAINT-SAUVEUR-D'EMALLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30619,49.61136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7716,\"INSEE_Comm\":\"61411\",\"nomCom\":\"Saint-Jouin-de-Blavou\",\"NOM_COM\":\"SAINT-JOUIN-DE-BLAVOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48234,48.44868]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7732,\"INSEE_Comm\":\"61473\",\"nomCom\":\"Sevrai\",\"NOM_COM\":\"SEVRAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15153,48.70492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7770,\"INSEE_Comm\":\"27478\",\"nomCom\":\"Prey\",\"NOM_COM\":\"PREY\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":76,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21917,48.95786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7772,\"INSEE_Comm\":\"78569\",\"nomCom\":\"Sainte-Mesme\",\"NOM_COM\":\"SAINTE-MESME\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94058,48.53569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7776,\"INSEE_Comm\":\"14154\",\"nomCom\":\"Chapelle-Yvon\",\"NOM_COM\":\"LACHAPELLE-YVON\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35311,49.06371]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7780,\"INSEE_Comm\":\"61462\",\"nomCom\":\"Sarceaux\",\"NOM_COM\":\"SARCEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6139\",\"nomCan\":\"Argentan-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03441,48.71587]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7781,\"INSEE_Comm\":\"14585\",\"nomCom\":\"Saint-Germain-du-Crioult\",\"NOM_COM\":\"SAINT-GERMAIN-DU-CRIOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60915,48.85098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7790,\"INSEE_Comm\":\"60661\",\"nomCom\":\"Vaumoise\",\"NOM_COM\":\"VAUMOISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.9823,49.23991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7796,\"INSEE_Comm\":\"14187\",\"nomCom\":\"Coulonces\",\"NOM_COM\":\"COULONCES\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.91992,48.86494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7833,\"INSEE_Comm\":\"95287\",\"nomCom\":\"Grisy-les-Pl�tres\",\"NOM_COM\":\"GRISY-LES-PLATRES\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04866,49.13328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7838,\"INSEE_Comm\":\"28090\",\"nomCom\":\"Ch�telets\",\"NOM_COM\":\"LESCHATELETS\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01827,48.65958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7844,\"INSEE_Comm\":\"80554\",\"nomCom\":\"Molliens-Dreuil\",\"NOM_COM\":\"MOLLIENS-DREUIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01098,49.88192]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7857,\"INSEE_Comm\":\"76048\",\"nomCom\":\"Avesnes-en-Bray\",\"NOM_COM\":\"AVESNES-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67577,49.47293]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7858,\"INSEE_Comm\":\"60455\",\"nomCom\":\"Neuville-Garnier\",\"NOM_COM\":\"LANEUVILLE-GARNIER\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04443,49.33245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7862,\"INSEE_Comm\":\"76668\",\"nomCom\":\"Saussay\",\"NOM_COM\":\"SAUSSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92513,49.63692]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7890,\"INSEE_Comm\":\"28235\",\"nomCom\":\"Marchezais\",\"NOM_COM\":\"MARCHEZAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51347,48.77498]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7896,\"INSEE_Comm\":\"14636\",\"nomCom\":\"Saint-Ouen-des-Besaces\",\"NOM_COM\":\"SAINT-OUEN-DES-BESACES\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.85015,49.02194]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7903,\"INSEE_Comm\":\"60541\",\"nomCom\":\"Roberval\",\"NOM_COM\":\"ROBERVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68498,49.29116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7912,\"INSEE_Comm\":\"27246\",\"nomCom\":\"Fleury-sur-Andelle\",\"NOM_COM\":\"FLEURY-SUR-ANDELLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35186,49.36355]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7945,\"INSEE_Comm\":\"28378\",\"nomCom\":\"Souanc�-au-Perche\",\"NOM_COM\":\"SOUANCE-AU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83479,48.2708]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7959,\"INSEE_Comm\":\"60601\",\"nomCom\":\"Saint-Vaast-l�s-Mello\",\"NOM_COM\":\"SAINT-VAAST-LES-MELLO\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39983,49.27665]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7963,\"INSEE_Comm\":\"76611\",\"nomCom\":\"Saint-Martin-aux-Arbres\",\"NOM_COM\":\"SAINT-MARTIN-AUX-ARBRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89016,49.65073]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":7968,\"INSEE_Comm\":\"95183\",\"nomCom\":\"Courdimanche\",\"NOM_COM\":\"COURDIMANCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"9539\",\"nomCan\":\"Hautil\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":250,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99944,49.04068]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8009,\"INSEE_Comm\":\"80102\",\"nomCom\":\"Biaches\",\"NOM_COM\":\"BIACHES\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.90027,49.92322]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8010,\"INSEE_Comm\":\"60617\",\"nomCom\":\"Sermaize\",\"NOM_COM\":\"SERMAIZE\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95324,49.61688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8044,\"INSEE_Comm\":\"28424\",\"nomCom\":\"Y�vres\",\"NOM_COM\":\"YEVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19116,48.1911]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8053,\"INSEE_Comm\":\"76517\",\"nomCom\":\"Quincampoix\",\"NOM_COM\":\"QUINCAMPOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":146,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17771,49.52048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8055,\"INSEE_Comm\":\"27198\",\"nomCom\":\"Damville\",\"NOM_COM\":\"DAMVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08042,48.86437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8064,\"INSEE_Comm\":\"60538\",\"nomCom\":\"Ricquebourg\",\"NOM_COM\":\"RICQUEBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75829,49.56068]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8072,\"INSEE_Comm\":\"27334\",\"nomCom\":\"Heudreville-en-Lieuvin\",\"NOM_COM\":\"HEUDREVILLE-EN-LIEUVIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50331,49.19331]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8084,\"INSEE_Comm\":\"76578\",\"nomCom\":\"Sainte-Genevi�ve\",\"NOM_COM\":\"SAINTE-GENEVIEVE\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42293,49.65851]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8105,\"INSEE_Comm\":\"27162\",\"nomCom\":\"Collandres-Quincarnon\",\"NOM_COM\":\"COLLANDRES-QUINCARNON\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86271,48.99375]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8137,\"INSEE_Comm\":\"28128\",\"nomCom\":\"Dangers\",\"NOM_COM\":\"DANGERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35008,48.50967]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8150,\"INSEE_Comm\":\"28395\",\"nomCom\":\"Trizay-Coutretot-Saint-Serge\",\"NOM_COM\":\"TRIZAY-COUTRETOT-SAINT-SERGE\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87814,48.29285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8165,\"INSEE_Comm\":\"60121\",\"nomCom\":\"Campagne\",\"NOM_COM\":\"CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96071,49.64958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8166,\"INSEE_Comm\":\"80351\",\"nomCom\":\"Fr�chencourt\",\"NOM_COM\":\"FRECHENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4369,49.96404]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8175,\"INSEE_Comm\":\"14581\",\"nomCom\":\"Saint-Germain-d'Ectot\",\"NOM_COM\":\"SAINT-GERMAIN-D'ECTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.71556,49.11925]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8224,\"INSEE_Comm\":\"14753\",\"nomCom\":\"Villers-Canivet\",\"NOM_COM\":\"VILLERS-CANIVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26137,48.9336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8234,\"INSEE_Comm\":\"60291\",\"nomCom\":\"Guiscard\",\"NOM_COM\":\"GUISCARD\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":61,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05501,49.65838]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8258,\"INSEE_Comm\":\"14644\",\"nomCom\":\"Saint-Philbert-des-Champs\",\"NOM_COM\":\"SAINT-PHILBERT-DES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27526,49.21229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8270,\"INSEE_Comm\":\"28160\",\"nomCom\":\"Francourville\",\"NOM_COM\":\"FRANCOURVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66249,48.40182]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8287,\"INSEE_Comm\":\"95011\",\"nomCom\":\"Ambleville\",\"NOM_COM\":\"AMBLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69487,49.15099]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8307,\"INSEE_Comm\":\"80833\",\"nomCom\":\"Yvrencheux\",\"NOM_COM\":\"YVRENCHEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9862,50.17737]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8324,\"INSEE_Comm\":\"28060\",\"nomCom\":\"Briconville\",\"NOM_COM\":\"BRICONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38866,48.5161]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8343,\"INSEE_Comm\":\"14704\",\"nomCom\":\"Tourneur\",\"NOM_COM\":\"LETOURNEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83195,48.97121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8349,\"INSEE_Comm\":\"14495\",\"nomCom\":\"P�riers-sur-le-Dan\",\"NOM_COM\":\"PERIERS-SUR-LE-DAN\",\"Statut\":\"Communesimple\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.33743,49.25729]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8350,\"INSEE_Comm\":\"60571\",\"nomCom\":\"Saint-Deniscourt\",\"NOM_COM\":\"SAINT-DENISCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86418,49.60643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8356,\"INSEE_Comm\":\"60103\",\"nomCom\":\"Bresles\",\"NOM_COM\":\"BRESLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":164,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25007,49.41356]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8387,\"INSEE_Comm\":\"80630\",\"nomCom\":\"Poix-de-Picardie\",\"NOM_COM\":\"POIX-DE-PICARDIE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":125,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97953,49.74857]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8396,\"INSEE_Comm\":\"60156\",\"nomCom\":\"Clairoix\",\"NOM_COM\":\"CLAIROIX\",\"Statut\":\"Communesimple\",\"idCan\":\"6009\",\"nomCan\":\"Compi�gne-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":88,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8454,49.4413]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8397,\"INSEE_Comm\":\"60620\",\"nomCom\":\"Silly-Tillard\",\"NOM_COM\":\"SILLY-TILLARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15358,49.31756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8426,\"INSEE_Comm\":\"61454\",\"nomCom\":\"Sainte-Scolasse-sur-Sarthe\",\"NOM_COM\":\"SAINTE-SCOLASSE-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38513,48.58104]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8440,\"INSEE_Comm\":\"14362\",\"nomCom\":\"Lessard-et-le-Ch�ne\",\"NOM_COM\":\"LESSARD-ET-LE-CHENE\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13136,49.07088]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8452,\"INSEE_Comm\":\"28117\",\"nomCom\":\"Cr�cy-Couv�\",\"NOM_COM\":\"CRECY-COUVE\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28281,48.67994]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8478,\"INSEE_Comm\":\"95054\",\"nomCom\":\"Bellay-en-Vexin\",\"NOM_COM\":\"LEBELLAY-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87861,49.14936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8487,\"INSEE_Comm\":\"14633\",\"nomCom\":\"Saint-Martin-du-Mesnil-Oury\",\"NOM_COM\":\"SAINT-MARTIN-DU-MESNIL-OURY\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.12421,49.0317]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8498,\"INSEE_Comm\":\"27311\",\"nomCom\":\"Harcourt\",\"NOM_COM\":\"HARCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77603,49.16592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8500,\"INSEE_Comm\":\"95504\",\"nomCom\":\"Presles\",\"NOM_COM\":\"PRESLES\",\"Statut\":\"Communesimple\",\"idCan\":\"9514\",\"nomCan\":\"Isle-Adam\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28675,49.11186]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8505,\"INSEE_Comm\":\"76340\",\"nomCom\":\"Harcanville\",\"NOM_COM\":\"HARCANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76851,49.70837]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8512,\"INSEE_Comm\":\"80622\",\"nomCom\":\"Picquigny\",\"NOM_COM\":\"PICQUIGNY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1391,49.93294]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8564,\"INSEE_Comm\":\"78193\",\"nomCom\":\"Dampierre-en-Yvelines\",\"NOM_COM\":\"DAMPIERRE-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97308,48.70372]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8567,\"INSEE_Comm\":\"27315\",\"nomCom\":\"Harquency\",\"NOM_COM\":\"HARQUENCY\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49992,49.24942]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8575,\"INSEE_Comm\":\"14339\",\"nomCom\":\"Hubert-Folie\",\"NOM_COM\":\"HUBERT-FOLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.31579,49.12778]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8592,\"INSEE_Comm\":\"27685\",\"nomCom\":\"Vieille-Lyre\",\"NOM_COM\":\"LAVIEILLE-LYRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75005,48.92157]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8667,\"INSEE_Comm\":\"61042\",\"nomCom\":\"Bellou-sur-Huisne\",\"NOM_COM\":\"BELLOU-SUR-HUISNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73179,48.41815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8707,\"INSEE_Comm\":\"14425\",\"nomCom\":\"Mesnil-Simon\",\"NOM_COM\":\"LEMESNIL-SIMON\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11235,49.08893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8712,\"INSEE_Comm\":\"80379\",\"nomCom\":\"Glisy\",\"NOM_COM\":\"GLISY\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38728,49.8743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8731,\"INSEE_Comm\":\"28112\",\"nomCom\":\"Coudreceau\",\"NOM_COM\":\"COUDRECEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92335,48.34744]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8738,\"INSEE_Comm\":\"80373\",\"nomCom\":\"Gamaches\",\"NOM_COM\":\"GAMACHES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55642,49.99472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8747,\"INSEE_Comm\":\"61264\",\"nomCom\":\"M�nil-Froger\",\"NOM_COM\":\"MENIL-FROGER\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26535,48.73085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8752,\"INSEE_Comm\":\"76649\",\"nomCom\":\"Saint-Saire\",\"NOM_COM\":\"SAINT-SAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48092,49.68168]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8761,\"INSEE_Comm\":\"27614\",\"nomCom\":\"Sancourt\",\"NOM_COM\":\"SANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67607,49.35358]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8764,\"INSEE_Comm\":\"95229\",\"nomCom\":\"�zanville\",\"NOM_COM\":\"EZANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9508\",\"nomCan\":\"�couen\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":374,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36269,49.0386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8766,\"INSEE_Comm\":\"80699\",\"nomCom\":\"Saint-Aubin-Rivi�re\",\"NOM_COM\":\"SAINT-AUBIN-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7794,49.86615]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8788,\"INSEE_Comm\":\"27701\",\"nomCom\":\"Val-de-Reuil\",\"NOM_COM\":\"VAL-DE-REUIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":297,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21146,49.26133]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8802,\"INSEE_Comm\":\"27229\",\"nomCom\":\"�vreux\",\"NOM_COM\":\"EVREUX\",\"Statut\":\"Pr?fecture\",\"idCan\":\"2799\",\"nomCan\":\"�vreux\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1140,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14164,49.02015]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8828,\"INSEE_Comm\":\"60029\",\"nomCom\":\"Auneuil\",\"NOM_COM\":\"AUNEUIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":86,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99555,49.37027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8865,\"INSEE_Comm\":\"76441\",\"nomCom\":\"Monchaux-Soreng\",\"NOM_COM\":\"MONCHAUX-SORENG\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57308,49.94661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8881,\"INSEE_Comm\":\"14584\",\"nomCom\":\"Saint-Germain-de-Tallevende-la-Lande-Vaumont\",\"NOM_COM\":\"SAINT-GERMAIN-DE-TALLEVENDE-LA-LANDE-VAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":111,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.90633,48.79373]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8895,\"INSEE_Comm\":\"28331\",\"nomCom\":\"Saint-Denis-d'Authou\",\"NOM_COM\":\"SAINT-DENIS-D'AUTHOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99676,48.33256]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8901,\"INSEE_Comm\":\"28323\",\"nomCom\":\"Saint-Ange-et-Tor�ay\",\"NOM_COM\":\"SAINT-ANGE-ET-TORCAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21437,48.6495]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8908,\"INSEE_Comm\":\"14011\",\"nomCom\":\"Anctoville\",\"NOM_COM\":\"ANCTOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.69068,49.11318]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8909,\"INSEE_Comm\":\"61499\",\"nomCom\":\"Ventes-de-Bourse\",\"NOM_COM\":\"LESVENTES-DE-BOURSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26648,48.50654]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8924,\"INSEE_Comm\":\"60240\",\"nomCom\":\"Fontaine-Bonneleau\",\"NOM_COM\":\"FONTAINE-BONNELEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14898,49.66367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8960,\"INSEE_Comm\":\"78498\",\"nomCom\":\"Poissy\",\"NOM_COM\":\"POISSY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7897\",\"nomCan\":\"Poissy\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1115,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02715,48.92354]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":8975,\"INSEE_Comm\":\"14764\",\"nomCom\":\"Pont-d'Ouilly\",\"NOM_COM\":\"PONT-D'OUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.40903,48.87687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9011,\"INSEE_Comm\":\"61316\",\"nomCom\":\"Ommoy\",\"NOM_COM\":\"OMMOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.02382,48.85457]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9013,\"INSEE_Comm\":\"27221\",\"nomCom\":\"�pinay\",\"NOM_COM\":\"EPINAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64181,48.97876]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9014,\"INSEE_Comm\":\"78062\",\"nomCom\":\"Beynes\",\"NOM_COM\":\"BEYNES\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":132,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86989,48.85444]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9036,\"INSEE_Comm\":\"76010\",\"nomCom\":\"Ancreti�ville-Saint-Victor\",\"NOM_COM\":\"ANCRETIEVILLE-SAINT-VICTOR\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96745,49.65452]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9037,\"INSEE_Comm\":\"80646\",\"nomCom\":\"Punchy\",\"NOM_COM\":\"PUNCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80784,49.79194]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9038,\"INSEE_Comm\":\"60017\",\"nomCom\":\"Ansauvillers\",\"NOM_COM\":\"ANSAUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38643,49.5673]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9044,\"INSEE_Comm\":\"76576\",\"nomCom\":\"Saint-Eustache-la-For�t\",\"NOM_COM\":\"SAINT-EUSTACHE-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45137,49.55429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9060,\"INSEE_Comm\":\"14389\",\"nomCom\":\"Maisoncelles-Pelvey\",\"NOM_COM\":\"MAISONCELLES-PELVEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67244,49.05907]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9122,\"INSEE_Comm\":\"27135\",\"nomCom\":\"Cesseville\",\"NOM_COM\":\"CESSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97642,49.17959]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9124,\"INSEE_Comm\":\"28340\",\"nomCom\":\"Saint-Hilaire-sur-Yerre\",\"NOM_COM\":\"SAINT-HILAIRE-SUR-YERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21922,48.03115]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9147,\"INSEE_Comm\":\"14182\",\"nomCom\":\"Cormolain\",\"NOM_COM\":\"CORMOLAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86305,49.12937]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9160,\"INSEE_Comm\":\"14316\",\"nomCom\":\"Grangues\",\"NOM_COM\":\"GRANGUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.05822,49.26207]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9161,\"INSEE_Comm\":\"76358\",\"nomCom\":\"H�ron\",\"NOM_COM\":\"LEHERON\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40458,49.49184]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9172,\"INSEE_Comm\":\"76041\",\"nomCom\":\"Autretot\",\"NOM_COM\":\"AUTRETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72785,49.65536]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9182,\"INSEE_Comm\":\"14307\",\"nomCom\":\"Goupilli�res\",\"NOM_COM\":\"GOUPILLIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47937,49.0324]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9191,\"INSEE_Comm\":\"80414\",\"nomCom\":\"Hangard\",\"NOM_COM\":\"HANGARD\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.509,49.83365]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9192,\"INSEE_Comm\":\"80418\",\"nomCom\":\"Hardecourt-aux-Bois\",\"NOM_COM\":\"HARDECOURT-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81396,49.99314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9198,\"INSEE_Comm\":\"80291\",\"nomCom\":\"Estr�es-sur-Noye\",\"NOM_COM\":\"ESTREES-SUR-NOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33898,49.78426]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9204,\"INSEE_Comm\":\"27513\",\"nomCom\":\"Saint-Aubin-des-Hayes\",\"NOM_COM\":\"SAINT-AUBIN-DES-HAYES\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67263,48.99721]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9211,\"INSEE_Comm\":\"76515\",\"nomCom\":\"Quiberville\",\"NOM_COM\":\"QUIBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91984,49.89754]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9225,\"INSEE_Comm\":\"14521\",\"nomCom\":\"Presles\",\"NOM_COM\":\"PRESLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.77427,48.87951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9237,\"INSEE_Comm\":\"61309\",\"nomCom\":\"Noc�\",\"NOM_COM\":\"NOCE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68681,48.38082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9244,\"INSEE_Comm\":\"27554\",\"nomCom\":\"Saint-Just\",\"NOM_COM\":\"SAINT-JUST\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43326,49.10619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9257,\"INSEE_Comm\":\"78269\",\"nomCom\":\"Gazeran\",\"NOM_COM\":\"GAZERAN\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":68,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77759,48.63342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9261,\"INSEE_Comm\":\"27300\",\"nomCom\":\"Grosley-sur-Risle\",\"NOM_COM\":\"GROSLEY-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80547,49.04472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9262,\"INSEE_Comm\":\"76631\",\"nomCom\":\"Saint-Pa�r\",\"NOM_COM\":\"SAINT-PAER\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88281,49.52361]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9270,\"INSEE_Comm\":\"14646\",\"nomCom\":\"Saint-Pierre-Canivet\",\"NOM_COM\":\"SAINT-PIERRE-CANIVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.23002,48.92113]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9271,\"INSEE_Comm\":\"76387\",\"nomCom\":\"Lindebeuf\",\"NOM_COM\":\"LINDEBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90718,49.70987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9279,\"INSEE_Comm\":\"28257\",\"nomCom\":\"Mondonville-Saint-Jean\",\"NOM_COM\":\"MONDONVILLE-SAINT-JEAN\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82436,48.36312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9285,\"INSEE_Comm\":\"80684\",\"nomCom\":\"Rouy-le-Petit\",\"NOM_COM\":\"ROUY-LE-PETIT\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95479,49.76537]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9300,\"INSEE_Comm\":\"61313\",\"nomCom\":\"Notre-Dame-du-Rocher\",\"NOM_COM\":\"NOTRE-DAME-DU-ROCHER\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.40523,48.79626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9302,\"INSEE_Comm\":\"28398\",\"nomCom\":\"Unverre\",\"NOM_COM\":\"UNVERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07243,48.18896]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9304,\"INSEE_Comm\":\"80788\",\"nomCom\":\"Vergies\",\"NOM_COM\":\"VERGIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8457,49.93428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9395,\"INSEE_Comm\":\"61491\",\"nomCom\":\"Tourouvre\",\"NOM_COM\":\"TOUROUVRE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65974,48.58881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9396,\"INSEE_Comm\":\"61157\",\"nomCom\":\"Exmes\",\"NOM_COM\":\"EXMES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18045,48.75628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9397,\"INSEE_Comm\":\"61156\",\"nomCom\":\"Essay\",\"NOM_COM\":\"ESSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24206,48.54051]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9407,\"INSEE_Comm\":\"27351\",\"nomCom\":\"Incarville\",\"NOM_COM\":\"INCARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2721\",\"nomCan\":\"Louviers-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15232,49.25215]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9408,\"INSEE_Comm\":\"60443\",\"nomCom\":\"Muirancourt\",\"NOM_COM\":\"MUIRANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00197,49.6485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9430,\"INSEE_Comm\":\"76401\",\"nomCom\":\"Mailleraye-sur-Seine\",\"NOM_COM\":\"LAMAILLERAYE-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":84,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75351,49.44652]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9433,\"INSEE_Comm\":\"61328\",\"nomCom\":\"Pin-au-Haras\",\"NOM_COM\":\"LEPIN-AU-HARAS\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.137,48.74735]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9434,\"INSEE_Comm\":\"80640\",\"nomCom\":\"Pozi�res\",\"NOM_COM\":\"POZIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72336,50.04162]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9443,\"INSEE_Comm\":\"80199\",\"nomCom\":\"Cl�ry-sur-Somme\",\"NOM_COM\":\"CLERY-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.88668,49.96222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9444,\"INSEE_Comm\":\"14618\",\"nomCom\":\"Sainte-Marie-Laumont\",\"NOM_COM\":\"SAINTE-MARIE-LAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.90883,48.92019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9463,\"INSEE_Comm\":\"61230\",\"nomCom\":\"Longny-au-Perche\",\"NOM_COM\":\"LONGNY-AU-PERCHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75789,48.52939]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9476,\"INSEE_Comm\":\"61259\",\"nomCom\":\"M�nil-B�rard\",\"NOM_COM\":\"LEMENIL-BERARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51072,48.70554]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9490,\"INSEE_Comm\":\"80546\",\"nomCom\":\"Miannay\",\"NOM_COM\":\"MIANNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7181,50.09587]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9510,\"INSEE_Comm\":\"14053\",\"nomCom\":\"Beaumais\",\"NOM_COM\":\"BEAUMAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07108,48.89923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9515,\"INSEE_Comm\":\"14138\",\"nomCom\":\"Cartigny-l'�pinay\",\"NOM_COM\":\"CARTIGNY-L'EPINAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.0069,49.23926]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9519,\"INSEE_Comm\":\"76192\",\"nomCom\":\"Criel-sur-Mer\",\"NOM_COM\":\"CRIEL-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":305,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32372,50.01907]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9536,\"INSEE_Comm\":\"76384\",\"nomCom\":\"Lillebonne\",\"NOM_COM\":\"LILLEBONNE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":123,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53404,49.50873]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9593,\"INSEE_Comm\":\"14506\",\"nomCom\":\"Planquery\",\"NOM_COM\":\"PLANQUERY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.82643,49.16265]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9597,\"INSEE_Comm\":\"61121\",\"nomCom\":\"Coulimer\",\"NOM_COM\":\"COULIMER\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46124,48.47957]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9612,\"INSEE_Comm\":\"28111\",\"nomCom\":\"Coudray-au-Perche\",\"NOM_COM\":\"COUDRAY-AU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85701,48.23831]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9621,\"INSEE_Comm\":\"27622\",\"nomCom\":\"Serquigny\",\"NOM_COM\":\"SERQUIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":101,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70757,49.11482]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9622,\"INSEE_Comm\":\"60088\",\"nomCom\":\"Bornel\",\"NOM_COM\":\"BORNEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":143,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18585,49.19197]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9624,\"INSEE_Comm\":\"80549\",\"nomCom\":\"Miraumont\",\"NOM_COM\":\"MIRAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72767,50.10057]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9650,\"INSEE_Comm\":\"76151\",\"nomCom\":\"Cailleville\",\"NOM_COM\":\"CAILLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73602,49.83645]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9654,\"INSEE_Comm\":\"76510\",\"nomCom\":\"Pr�tot-Vicquemare\",\"NOM_COM\":\"PRETOT-VICQUEMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84722,49.73362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9655,\"INSEE_Comm\":\"80428\",\"nomCom\":\"Hem-Monacu\",\"NOM_COM\":\"HEM-MONACU\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84096,49.95738]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9656,\"INSEE_Comm\":\"60652\",\"nomCom\":\"Valdampierre\",\"NOM_COM\":\"VALDAMPIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05429,49.3068]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9657,\"INSEE_Comm\":\"60248\",\"nomCom\":\"Fouilloy\",\"NOM_COM\":\"FOUILLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8182,49.73127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9682,\"INSEE_Comm\":\"80040\",\"nomCom\":\"Aum�tre\",\"NOM_COM\":\"AUMATRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77316,49.92157]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9724,\"INSEE_Comm\":\"76379\",\"nomCom\":\"Lamberville\",\"NOM_COM\":\"LAMBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00884,49.77386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9726,\"INSEE_Comm\":\"14570\",\"nomCom\":\"Saint-Cyr-du-Ronceray\",\"NOM_COM\":\"SAINT-CYR-DU-RONCERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30195,49.05135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9727,\"INSEE_Comm\":\"14533\",\"nomCom\":\"Repentigny\",\"NOM_COM\":\"REPENTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04269,49.19901]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9728,\"INSEE_Comm\":\"28260\",\"nomCom\":\"Montharville\",\"NOM_COM\":\"MONTHARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32505,48.17686]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9730,\"INSEE_Comm\":\"28334\",\"nomCom\":\"Saint-Denis-les-Ponts\",\"NOM_COM\":\"SAINT-DENIS-LES-PONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":111,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27229,48.06136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9742,\"INSEE_Comm\":\"76231\",\"nomCom\":\"Elbeuf\",\"NOM_COM\":\"ELBEUF\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7617\",\"nomCan\":\"Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":646,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99725,49.2768]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9749,\"INSEE_Comm\":\"27096\",\"nomCom\":\"Bottereaux\",\"NOM_COM\":\"LESBOTTEREAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67656,48.87122]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9766,\"INSEE_Comm\":\"14232\",\"nomCom\":\"Ducy-Sainte-Marguerite\",\"NOM_COM\":\"DUCY-SAINTE-MARGUERITE\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.61073,49.22586]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9767,\"INSEE_Comm\":\"14261\",\"nomCom\":\"Faulq\",\"NOM_COM\":\"LEFAULQ\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31793,49.23872]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9768,\"INSEE_Comm\":\"76431\",\"nomCom\":\"Mesnil-Lieubray\",\"NOM_COM\":\"LEMESNIL-LIEUBRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50751,49.51552]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9769,\"INSEE_Comm\":\"60583\",\"nomCom\":\"Saint-L�ger-en-Bray\",\"NOM_COM\":\"SAINT-LEGER-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02636,49.3882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9779,\"INSEE_Comm\":\"76149\",\"nomCom\":\"Butot\",\"NOM_COM\":\"BUTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01984,49.61328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9786,\"INSEE_Comm\":\"27249\",\"nomCom\":\"Fontaine-Bellenger\",\"NOM_COM\":\"FONTAINE-BELLENGER\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":96,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25303,49.18023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9789,\"INSEE_Comm\":\"61137\",\"nomCom\":\"Cram�nil\",\"NOM_COM\":\"CRAMENIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37203,48.74502]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9793,\"INSEE_Comm\":\"76169\",\"nomCom\":\"Cerlangue\",\"NOM_COM\":\"LACERLANGUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41572,49.4885]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9794,\"INSEE_Comm\":\"78261\",\"nomCom\":\"Gaillon-sur-Montcient\",\"NOM_COM\":\"GAILLON-SUR-MONTCIENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89797,49.02986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9795,\"INSEE_Comm\":\"28283\",\"nomCom\":\"Nottonville\",\"NOM_COM\":\"NOTTONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5253,48.12458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9817,\"INSEE_Comm\":\"80740\",\"nomCom\":\"Sourdon\",\"NOM_COM\":\"SOURDON\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40165,49.70785]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9819,\"INSEE_Comm\":\"80431\",\"nomCom\":\"H�rissart\",\"NOM_COM\":\"HERISSART\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41697,50.0286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9823,\"INSEE_Comm\":\"80209\",\"nomCom\":\"Contoire\",\"NOM_COM\":\"CONTOIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55546,49.72653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9824,\"INSEE_Comm\":\"80803\",\"nomCom\":\"Villers-l�s-Roye\",\"NOM_COM\":\"VILLERS-LES-ROYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73637,49.70638]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9825,\"INSEE_Comm\":\"80766\",\"nomCom\":\"Toutencourt\",\"NOM_COM\":\"TOUTENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46506,50.04545]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9826,\"INSEE_Comm\":\"80356\",\"nomCom\":\"Fresnoy-Andainville\",\"NOM_COM\":\"FRESNOY-ANDAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79179,49.9086]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9827,\"INSEE_Comm\":\"80710\",\"nomCom\":\"Saint-Maxent\",\"NOM_COM\":\"SAINT-MAXENT\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73127,49.99809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9828,\"INSEE_Comm\":\"14054\",\"nomCom\":\"Beaumesnil\",\"NOM_COM\":\"BEAUMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.9688,48.89675]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9842,\"INSEE_Comm\":\"76024\",\"nomCom\":\"Ardouval\",\"NOM_COM\":\"ARDOUVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27307,49.74085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9852,\"INSEE_Comm\":\"14512\",\"nomCom\":\"Pont�coulant\",\"NOM_COM\":\"PONTECOULANT\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58377,48.89185]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9867,\"INSEE_Comm\":\"14444\",\"nomCom\":\"Monteille\",\"NOM_COM\":\"MONTEILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04421,49.10678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9870,\"INSEE_Comm\":\"76331\",\"nomCom\":\"Grugny\",\"NOM_COM\":\"GRUGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10617,49.61815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9877,\"INSEE_Comm\":\"14413\",\"nomCom\":\"Mesnil-Auzouf\",\"NOM_COM\":\"LEMESNIL-AUZOUF\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.7358,48.97751]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9888,\"INSEE_Comm\":\"28245\",\"nomCom\":\"Meslay-le-Grenet\",\"NOM_COM\":\"MESLAY-LE-GRENET\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38965,48.37066]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9905,\"INSEE_Comm\":\"76678\",\"nomCom\":\"Sommery\",\"NOM_COM\":\"SOMMERY\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":61,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44661,49.63866]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9906,\"INSEE_Comm\":\"61052\",\"nomCom\":\"Bonnefoi\",\"NOM_COM\":\"BONNEFOI\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56245,48.67626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9907,\"INSEE_Comm\":\"27171\",\"nomCom\":\"Cormier\",\"NOM_COM\":\"LECORMIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29683,48.98485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9910,\"INSEE_Comm\":\"14041\",\"nomCom\":\"Barneville-la-Bertran\",\"NOM_COM\":\"BARNEVILLE-LA-BERTRAN\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18203,49.39128]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9912,\"INSEE_Comm\":\"27504\",\"nomCom\":\"Sacquenville\",\"NOM_COM\":\"SACQUENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":141,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07444,49.08123]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9922,\"INSEE_Comm\":\"27496\",\"nomCom\":\"Rosay-sur-Lieure\",\"NOM_COM\":\"ROSAY-SUR-LIEURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42795,49.37464]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9941,\"INSEE_Comm\":\"60700\",\"nomCom\":\"Warluis\",\"NOM_COM\":\"WARLUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15882,49.38617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9948,\"INSEE_Comm\":\"61385\",\"nomCom\":\"Saint-Evroult-de-Montfort\",\"NOM_COM\":\"SAINT-EVROULT-DE-MONTFORT\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31277,48.8123]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9953,\"INSEE_Comm\":\"61488\",\"nomCom\":\"Touquettes\",\"NOM_COM\":\"TOUQUETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41452,48.79688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9964,\"INSEE_Comm\":\"78048\",\"nomCom\":\"Bazainville\",\"NOM_COM\":\"BAZAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66749,48.80733]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9968,\"INSEE_Comm\":\"95181\",\"nomCom\":\"Courcelles-sur-Viosne\",\"NOM_COM\":\"COURCELLES-SUR-VIOSNE\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9963,49.07303]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9969,\"INSEE_Comm\":\"61295\",\"nomCom\":\"Motte-Fouquet\",\"NOM_COM\":\"LAMOTTE-FOUQUET\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26878,48.56653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9971,\"INSEE_Comm\":\"61106\",\"nomCom\":\"Ch�nedouit\",\"NOM_COM\":\"CHENEDOUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34155,48.76274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9972,\"INSEE_Comm\":\"14092\",\"nomCom\":\"Bourgu�bus\",\"NOM_COM\":\"BOURGUEBUS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":181,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28897,49.1157]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9973,\"INSEE_Comm\":\"14387\",\"nomCom\":\"Magny-le-Freule\",\"NOM_COM\":\"MAGNY-LE-FREULE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07439,49.1038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9974,\"INSEE_Comm\":\"61301\",\"nomCom\":\"Neauphe-sous-Essai\",\"NOM_COM\":\"NEAUPHE-SOUS-ESSAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19427,48.56387]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9975,\"INSEE_Comm\":\"61049\",\"nomCom\":\"Boissei-la-Lande\",\"NOM_COM\":\"BOISSEI-LA-LANDE\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.06034,48.68869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":9981,\"INSEE_Comm\":\"61419\",\"nomCom\":\"Sainte-Marguerite-de-Carrouges\",\"NOM_COM\":\"SAINTE-MARGUERITE-DE-CARROUGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15144,48.59375]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10006,\"INSEE_Comm\":\"95676\",\"nomCom\":\"Villers-en-Arthies\",\"NOM_COM\":\"VILLERS-EN-ARTHIES\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7304,49.0859]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10033,\"INSEE_Comm\":\"14755\",\"nomCom\":\"Villerville\",\"NOM_COM\":\"VILLERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.12314,49.39087]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10034,\"INSEE_Comm\":\"27433\",\"nomCom\":\"Neuville-sur-Authou\",\"NOM_COM\":\"NEUVILLE-SUR-AUTHOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62876,49.20497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10035,\"INSEE_Comm\":\"27657\",\"nomCom\":\"Touville\",\"NOM_COM\":\"TOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75231,49.30489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10036,\"INSEE_Comm\":\"76250\",\"nomCom\":\"�tainhus\",\"NOM_COM\":\"ETAINHUS\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30928,49.56674]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10037,\"INSEE_Comm\":\"76696\",\"nomCom\":\"Tocqueville-sur-Eu\",\"NOM_COM\":\"TOCQUEVILLE-SUR-EU\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27571,50.00022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10038,\"INSEE_Comm\":\"80535\",\"nomCom\":\"Mesge\",\"NOM_COM\":\"LEMESGE\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04376,49.94052]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10039,\"INSEE_Comm\":\"80795\",\"nomCom\":\"Ville-le-Marclet\",\"NOM_COM\":\"VILLE-LE-MARCLET\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09051,50.03985]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10040,\"INSEE_Comm\":\"60310\",\"nomCom\":\"Herchies\",\"NOM_COM\":\"HERCHIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6040\",\"nomCan\":\"Beauvais-Nord-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00298,49.48341]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10041,\"INSEE_Comm\":\"60542\",\"nomCom\":\"Rochy-Cond�\",\"NOM_COM\":\"ROCHY-CONDE\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":88,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18879,49.40415]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10042,\"INSEE_Comm\":\"27304\",\"nomCom\":\"Guerny\",\"NOM_COM\":\"GUERNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67988,49.22485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10043,\"INSEE_Comm\":\"60308\",\"nomCom\":\"H�m�villers\",\"NOM_COM\":\"HEMEVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67275,49.47183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10044,\"INSEE_Comm\":\"60408\",\"nomCom\":\"Monchy-Humi�res\",\"NOM_COM\":\"MONCHY-HUMIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73831,49.47678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10045,\"INSEE_Comm\":\"60024\",\"nomCom\":\"Arsy\",\"NOM_COM\":\"ARSY\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69008,49.40547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10046,\"INSEE_Comm\":\"60650\",\"nomCom\":\"Trumilly\",\"NOM_COM\":\"TRUMILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.7871,49.23963]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10047,\"INSEE_Comm\":\"60294\",\"nomCom\":\"Hainvillers\",\"NOM_COM\":\"HAINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6819,49.59098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10048,\"INSEE_Comm\":\"60272\",\"nomCom\":\"Gilocourt\",\"NOM_COM\":\"GILOCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89026,49.30079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10049,\"INSEE_Comm\":\"80365\",\"nomCom\":\"Fricamps\",\"NOM_COM\":\"FRICAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99055,49.81821]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10062,\"INSEE_Comm\":\"80333\",\"nomCom\":\"Fort-Mahon-Plage\",\"NOM_COM\":\"FORT-MAHON-PLAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":675,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57708,50.34508]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10083,\"INSEE_Comm\":\"76481\",\"nomCom\":\"Octeville-sur-Mer\",\"NOM_COM\":\"OCTEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":369,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11791,49.5589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10089,\"INSEE_Comm\":\"78320\",\"nomCom\":\"Jeufosse\",\"NOM_COM\":\"JEUFOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53725,49.03535]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10099,\"INSEE_Comm\":\"27430\",\"nomCom\":\"Neuve-Grange\",\"NOM_COM\":\"LANEUVE-GRANGE\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55846,49.35995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10109,\"INSEE_Comm\":\"27134\",\"nomCom\":\"Cauverville-en-Roumois\",\"NOM_COM\":\"CAUVERVILLE-EN-ROUMOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64706,49.35524]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10110,\"INSEE_Comm\":\"27386\",\"nomCom\":\"Manoir\",\"NOM_COM\":\"LEMANOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19944,49.31752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10111,\"INSEE_Comm\":\"60491\",\"nomCom\":\"Pierrefonds\",\"NOM_COM\":\"PIERREFONDS\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96576,49.348]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10122,\"INSEE_Comm\":\"28264\",\"nomCom\":\"Montireau\",\"NOM_COM\":\"MONTIREAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03541,48.41473]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10123,\"INSEE_Comm\":\"28107\",\"nomCom\":\"Corancez\",\"NOM_COM\":\"CORANCEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51479,48.36732]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10134,\"INSEE_Comm\":\"95154\",\"nomCom\":\"Chennevi�res-l�s-Louvres\",\"NOM_COM\":\"CHENNEVIERES-LES-LOUVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54654,49.04209]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10138,\"INSEE_Comm\":\"14143\",\"nomCom\":\"Caumont-l'�vent�\",\"NOM_COM\":\"CAUMONT-L'EVENTE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81256,49.09642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10143,\"INSEE_Comm\":\"80635\",\"nomCom\":\"Pont-Remy\",\"NOM_COM\":\"PONT-REMY\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91476,50.0615]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10144,\"INSEE_Comm\":\"80344\",\"nomCom\":\"Franci�res\",\"NOM_COM\":\"FRANCIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94581,50.07437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10148,\"INSEE_Comm\":\"14424\",\"nomCom\":\"Mesnil-Robert\",\"NOM_COM\":\"LEMESNIL-ROBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.97291,48.8801]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10154,\"INSEE_Comm\":\"95510\",\"nomCom\":\"Puiseux-Pontoise\",\"NOM_COM\":\"PUISEUX-PONTOISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9529\",\"nomCan\":\"Cergy-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01587,49.06376]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10176,\"INSEE_Comm\":\"76457\",\"nomCom\":\"Moulineaux\",\"NOM_COM\":\"MOULINEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9571,49.34322]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10181,\"INSEE_Comm\":\"60655\",\"nomCom\":\"Varesnes\",\"NOM_COM\":\"VARESNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07818,49.55669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10202,\"INSEE_Comm\":\"14357\",\"nomCom\":\"Lassy\",\"NOM_COM\":\"LASSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68414,48.91364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10212,\"INSEE_Comm\":\"28256\",\"nomCom\":\"Mol�ans\",\"NOM_COM\":\"MOLEANS\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40241,48.11246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10222,\"INSEE_Comm\":\"80160\",\"nomCom\":\"Cagny\",\"NOM_COM\":\"CAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8042\",\"nomCan\":\"Amiens5e(Sud-Est)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33749,49.85057]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10227,\"INSEE_Comm\":\"78171\",\"nomCom\":\"Cond�-sur-Vesgre\",\"NOM_COM\":\"CONDE-SUR-VESGRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67374,48.7325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10236,\"INSEE_Comm\":\"61335\",\"nomCom\":\"Poterie-au-Perche\",\"NOM_COM\":\"LAPOTERIE-AU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69462,48.62709]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10246,\"INSEE_Comm\":\"27181\",\"nomCom\":\"Courdemanche\",\"NOM_COM\":\"COURDEMANCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27664,48.80229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10253,\"INSEE_Comm\":\"27238\",\"nomCom\":\"Ferri�res-Haut-Clocher\",\"NOM_COM\":\"FERRIERES-HAUT-CLOCHER\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":97,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98749,49.02038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10267,\"INSEE_Comm\":\"78192\",\"nomCom\":\"Dammartin-en-Serve\",\"NOM_COM\":\"DAMMARTIN-EN-SERVE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61781,48.91141]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10271,\"INSEE_Comm\":\"14740\",\"nomCom\":\"Vespi�re\",\"NOM_COM\":\"LAVESPIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42475,49.01119]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10275,\"INSEE_Comm\":\"27556\",\"nomCom\":\"Saint-Laurent-du-Tencement\",\"NOM_COM\":\"SAINT-LAURENT-DU-TENCEMENT\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46057,48.89179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10277,\"INSEE_Comm\":\"27038\",\"nomCom\":\"Barils\",\"NOM_COM\":\"LESBARILS\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81858,48.72522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10282,\"INSEE_Comm\":\"14551\",\"nomCom\":\"Russy\",\"NOM_COM\":\"RUSSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81978,49.32835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10283,\"INSEE_Comm\":\"95607\",\"nomCom\":\"Taverny\",\"NOM_COM\":\"TAVERNY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9525\",\"nomCan\":\"Taverny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":505,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22116,49.02673]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10284,\"INSEE_Comm\":\"78049\",\"nomCom\":\"Bazemont\",\"NOM_COM\":\"BAZEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8741,48.9319]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10285,\"INSEE_Comm\":\"95348\",\"nomCom\":\"Longuesse\",\"NOM_COM\":\"LONGUESSE\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92659,49.06166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10288,\"INSEE_Comm\":\"14583\",\"nomCom\":\"Saint-Germain-de-Montgommery\",\"NOM_COM\":\"SAINT-GERMAIN-DE-MONTGOMMERY\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16621,48.94085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10289,\"INSEE_Comm\":\"61320\",\"nomCom\":\"Orville\",\"NOM_COM\":\"ORVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.2866,48.89009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10294,\"INSEE_Comm\":\"14757\",\"nomCom\":\"Villiers-le-Sec\",\"NOM_COM\":\"VILLIERS-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56561,49.29294]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10320,\"INSEE_Comm\":\"95500\",\"nomCom\":\"Pontoise\",\"NOM_COM\":\"PONTOISE\",\"Statut\":\"Pr?fecture\",\"idCan\":\"9519\",\"nomCan\":\"Pontoise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":761,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09488,49.05138]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10325,\"INSEE_Comm\":\"14562\",\"nomCom\":\"Saint-Aubin-sur-Mer\",\"NOM_COM\":\"SAINT-AUBIN-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":218,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.3928,49.32247]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10344,\"INSEE_Comm\":\"14009\",\"nomCom\":\"Amfreville\",\"NOM_COM\":\"AMFREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":84,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24158,49.25014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10345,\"INSEE_Comm\":\"76314\",\"nomCom\":\"Graimbouville\",\"NOM_COM\":\"GRAIMBOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33399,49.58166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10346,\"INSEE_Comm\":\"76701\",\"nomCom\":\"Touffreville-la-Cable\",\"NOM_COM\":\"TOUFFREVILLE-LA-CABLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61627,49.51943]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10347,\"INSEE_Comm\":\"76036\",\"nomCom\":\"Auppegard\",\"NOM_COM\":\"AUPPEGARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03085,49.83068]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10348,\"INSEE_Comm\":\"27340\",\"nomCom\":\"Honguemare-Guenouville\",\"NOM_COM\":\"HONGUEMARE-GUENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81589,49.37815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10349,\"INSEE_Comm\":\"76610\",\"nomCom\":\"Sainte-Marie-des-Champs\",\"NOM_COM\":\"SAINTE-MARIE-DES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78182,49.62594]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10350,\"INSEE_Comm\":\"27232\",\"nomCom\":\"Farceaux\",\"NOM_COM\":\"FARCEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52826,49.29176]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10351,\"INSEE_Comm\":\"27670\",\"nomCom\":\"Vandrimare\",\"NOM_COM\":\"VANDRIMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35159,49.38275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10352,\"INSEE_Comm\":\"76614\",\"nomCom\":\"Saint-Martin-de-Boscherville\",\"NOM_COM\":\"SAINT-MARTIN-DE-BOSCHERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9628,49.44459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10353,\"INSEE_Comm\":\"80738\",\"nomCom\":\"Soues\",\"NOM_COM\":\"SOUES\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05748,49.95315]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10355,\"INSEE_Comm\":\"80638\",\"nomCom\":\"Potte\",\"NOM_COM\":\"POTTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89972,49.79839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10357,\"INSEE_Comm\":\"80185\",\"nomCom\":\"Champien\",\"NOM_COM\":\"CHAMPIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85836,49.69585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10358,\"INSEE_Comm\":\"60417\",\"nomCom\":\"Montherlant\",\"NOM_COM\":\"MONTHERLANT\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05663,49.28088]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10359,\"INSEE_Comm\":\"60307\",\"nomCom\":\"Heilles\",\"NOM_COM\":\"HEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27011,49.33313]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10360,\"INSEE_Comm\":\"60517\",\"nomCom\":\"Puiseux-le-Hauberger\",\"NOM_COM\":\"PUISEUX-LE-HAUBERGER\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23121,49.21808]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10361,\"INSEE_Comm\":\"80330\",\"nomCom\":\"Forceville-en-Vimeu\",\"NOM_COM\":\"FORCEVILLE-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79941,49.96185]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10362,\"INSEE_Comm\":\"60399\",\"nomCom\":\"Mesnil-Saint-Firmin\",\"NOM_COM\":\"LEMESNIL-SAINT-FIRMIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41045,49.62596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10363,\"INSEE_Comm\":\"60008\",\"nomCom\":\"Airion\",\"NOM_COM\":\"AIRION\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41814,49.42222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10364,\"INSEE_Comm\":\"60392\",\"nomCom\":\"M�licocq\",\"NOM_COM\":\"MELICOCQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85005,49.48934]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10368,\"INSEE_Comm\":\"60105\",\"nomCom\":\"Br�tigny\",\"NOM_COM\":\"BRETIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.11658,49.55969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10400,\"INSEE_Comm\":\"76378\",\"nomCom\":\"Jumi�ges\",\"NOM_COM\":\"JUMIEGES\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83166,49.42707]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10401,\"INSEE_Comm\":\"76477\",\"nomCom\":\"Notre-Dame-du-Bec\",\"NOM_COM\":\"NOTRE-DAME-DU-BEC\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22067,49.5941]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10402,\"INSEE_Comm\":\"76190\",\"nomCom\":\"Crasville-la-Rocquefort\",\"NOM_COM\":\"CRASVILLE-LA-ROCQUEFORT\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87745,49.80415]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10408,\"INSEE_Comm\":\"28015\",\"nomCom\":\"Auneau\",\"NOM_COM\":\"AUNEAU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":191,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77317,48.46943]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10409,\"INSEE_Comm\":\"95170\",\"nomCom\":\"Cond�court\",\"NOM_COM\":\"CONDECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93659,49.03756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10414,\"INSEE_Comm\":\"27059\",\"nomCom\":\"Bernouville\",\"NOM_COM\":\"BERNOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67445,49.28968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10423,\"INSEE_Comm\":\"27026\",\"nomCom\":\"Authevernes\",\"NOM_COM\":\"AUTHEVERNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63269,49.21949]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10434,\"INSEE_Comm\":\"28170\",\"nomCom\":\"Garanci�res-en-Drouais\",\"NOM_COM\":\"GARANCIERES-EN-DROUAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.282,48.70273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10436,\"INSEE_Comm\":\"76279\",\"nomCom\":\"Foucart\",\"NOM_COM\":\"FOUCART\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59175,49.61579]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10441,\"INSEE_Comm\":\"14034\",\"nomCom\":\"Avenay\",\"NOM_COM\":\"AVENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.46441,49.09575]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10444,\"INSEE_Comm\":\"95539\",\"nomCom\":\"Saint-Brice-sous-For�t\",\"NOM_COM\":\"SAINT-BRICE-SOUS-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"9508\",\"nomCan\":\"�couen\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":363,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35031,49.0019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10451,\"INSEE_Comm\":\"80794\",\"nomCom\":\"Villecourt\",\"NOM_COM\":\"VILLECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97271,49.79843]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10452,\"INSEE_Comm\":\"80266\",\"nomCom\":\"Englebelmer\",\"NOM_COM\":\"ENGLEBELMER\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60796,50.05479]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10458,\"INSEE_Comm\":\"76537\",\"nomCom\":\"Ronchois\",\"NOM_COM\":\"RONCHOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62318,49.7241]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10470,\"INSEE_Comm\":\"14717\",\"nomCom\":\"Truttemer-le-Grand\",\"NOM_COM\":\"TRUTTEMER-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.80631,48.79868]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10480,\"INSEE_Comm\":\"76278\",\"nomCom\":\"Foucarmont\",\"NOM_COM\":\"FOUCARMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56381,49.84825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10510,\"INSEE_Comm\":\"14496\",\"nomCom\":\"P�rigny\",\"NOM_COM\":\"PERIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60506,48.9189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10516,\"INSEE_Comm\":\"28301\",\"nomCom\":\"Poisvilliers\",\"NOM_COM\":\"POISVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46124,48.50638]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10524,\"INSEE_Comm\":\"28286\",\"nomCom\":\"Oll�\",\"NOM_COM\":\"OLLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29677,48.38617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10536,\"INSEE_Comm\":\"27316\",\"nomCom\":\"Hauville\",\"NOM_COM\":\"HAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76658,49.39705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10553,\"INSEE_Comm\":\"28389\",\"nomCom\":\"Thiville\",\"NOM_COM\":\"THIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36597,48.01927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10565,\"INSEE_Comm\":\"78520\",\"nomCom\":\"Richebourg\",\"NOM_COM\":\"RICHEBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6346,48.8248]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10572,\"INSEE_Comm\":\"28360\",\"nomCom\":\"Saint-Sauveur-Marville\",\"NOM_COM\":\"SAINT-SAUVEUR-MARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28568,48.60473]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10575,\"INSEE_Comm\":\"27627\",\"nomCom\":\"Theil-Nolent\",\"NOM_COM\":\"LETHEIL-NOLENT\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53419,49.15226]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10584,\"INSEE_Comm\":\"61367\",\"nomCom\":\"Saint-Aubin-de-Courteraie\",\"NOM_COM\":\"SAINT-AUBIN-DE-COURTERAIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45291,48.60879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10586,\"INSEE_Comm\":\"95252\",\"nomCom\":\"Franconville\",\"NOM_COM\":\"FRANCONVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9511\",\"nomCan\":\"Franconville\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":878,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22389,48.98842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10587,\"INSEE_Comm\":\"78368\",\"nomCom\":\"Mareil-sur-Mauldre\",\"NOM_COM\":\"MAREIL-SUR-MAULDRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87528,48.88861]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10588,\"INSEE_Comm\":\"14252\",\"nomCom\":\"Estr�es-la-Campagne\",\"NOM_COM\":\"ESTREES-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24308,49.00802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10589,\"INSEE_Comm\":\"14375\",\"nomCom\":\"Loges-Saulces\",\"NOM_COM\":\"LESLOGES-SAULCES\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30334,48.86466]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10590,\"INSEE_Comm\":\"14497\",\"nomCom\":\"Perri�res\",\"NOM_COM\":\"PERRIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12579,48.95968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10640,\"INSEE_Comm\":\"14705\",\"nomCom\":\"Tourni�res\",\"NOM_COM\":\"TOURNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.93738,49.23025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10642,\"INSEE_Comm\":\"14224\",\"nomCom\":\"Deux-Jumeaux\",\"NOM_COM\":\"DEUX-JUMEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.96879,49.3548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10643,\"INSEE_Comm\":\"14401\",\"nomCom\":\"Manvieux\",\"NOM_COM\":\"MANVIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.65879,49.33749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10644,\"INSEE_Comm\":\"76522\",\"nomCom\":\"Remu�e\",\"NOM_COM\":\"LAREMUEE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40993,49.52597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10645,\"INSEE_Comm\":\"76714\",\"nomCom\":\"Trois-Pierres\",\"NOM_COM\":\"LESTROIS-PIERRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40256,49.55083]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10646,\"INSEE_Comm\":\"76374\",\"nomCom\":\"Incheville\",\"NOM_COM\":\"INCHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49983,50.00517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10647,\"INSEE_Comm\":\"76674\",\"nomCom\":\"S�vis\",\"NOM_COM\":\"SEVIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17834,49.71188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10648,\"INSEE_Comm\":\"80063\",\"nomCom\":\"Beauchamps\",\"NOM_COM\":\"BEAUCHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52335,50.01923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10649,\"INSEE_Comm\":\"76646\",\"nomCom\":\"Saint-Riquier-�s-Plains\",\"NOM_COM\":\"SAINT-RIQUIER-ES-PLAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66631,49.82038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10651,\"INSEE_Comm\":\"80508\",\"nomCom\":\"March�-Allouarde\",\"NOM_COM\":\"MARCHE-ALLOUARDE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86471,49.72388]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10652,\"INSEE_Comm\":\"80742\",\"nomCom\":\"Surcamps\",\"NOM_COM\":\"SURCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08375,50.06702]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10653,\"INSEE_Comm\":\"60480\",\"nomCom\":\"Oro�r\",\"NOM_COM\":\"OROER\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18054,49.49647]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10654,\"INSEE_Comm\":\"60218\",\"nomCom\":\"Esches\",\"NOM_COM\":\"ESCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17419,49.23126]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10655,\"INSEE_Comm\":\"60378\",\"nomCom\":\"Marest-sur-Matz\",\"NOM_COM\":\"MAREST-SUR-MATZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82458,49.50333]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10656,\"INSEE_Comm\":\"80468\",\"nomCom\":\"Lavi�ville\",\"NOM_COM\":\"LAVIEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57658,49.99131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10657,\"INSEE_Comm\":\"60015\",\"nomCom\":\"Angy\",\"NOM_COM\":\"ANGY\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32878,49.33428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10658,\"INSEE_Comm\":\"80227\",\"nomCom\":\"Croixrault\",\"NOM_COM\":\"CROIXRAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98646,49.7945]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10659,\"INSEE_Comm\":\"80274\",\"nomCom\":\"Eppeville\",\"NOM_COM\":\"EPPEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04904,49.73776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10660,\"INSEE_Comm\":\"80438\",\"nomCom\":\"Heudicourt\",\"NOM_COM\":\"HEUDICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09022,50.02702]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10683,\"INSEE_Comm\":\"76654\",\"nomCom\":\"Saint-Vaast-du-Val\",\"NOM_COM\":\"SAINT-VAAST-DU-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00949,49.68607]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10684,\"INSEE_Comm\":\"76444\",\"nomCom\":\"Mont-de-l'If\",\"NOM_COM\":\"MONT-DE-L'IF\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82012,49.58562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10685,\"INSEE_Comm\":\"76383\",\"nomCom\":\"Lestanville\",\"NOM_COM\":\"LESTANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95965,49.74816]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10686,\"INSEE_Comm\":\"76063\",\"nomCom\":\"Beauval-en-Caux\",\"NOM_COM\":\"BEAUVAL-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02536,49.73929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10687,\"INSEE_Comm\":\"76328\",\"nomCom\":\"Grigneuseville\",\"NOM_COM\":\"GRIGNEUSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19239,49.65489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10688,\"INSEE_Comm\":\"76342\",\"nomCom\":\"Hattenville\",\"NOM_COM\":\"HATTENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53903,49.6543]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10695,\"INSEE_Comm\":\"27684\",\"nomCom\":\"Vieil-�vreux\",\"NOM_COM\":\"LEVIEIL-EVREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21291,49.00362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10696,\"INSEE_Comm\":\"27136\",\"nomCom\":\"Chaignes\",\"NOM_COM\":\"CHAIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45167,49.01382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10710,\"INSEE_Comm\":\"27233\",\"nomCom\":\"Fatouville-Grestain\",\"NOM_COM\":\"FATOUVILLE-GRESTAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":73,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33244,49.41328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10711,\"INSEE_Comm\":\"27090\",\"nomCom\":\"Bosc-Roger-en-Roumois\",\"NOM_COM\":\"LEBOSC-ROGER-EN-ROUMOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":143,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92236,49.29335]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10712,\"INSEE_Comm\":\"27690\",\"nomCom\":\"Villers-en-Vexin\",\"NOM_COM\":\"VILLERS-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59021,49.24985]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10718,\"INSEE_Comm\":\"76618\",\"nomCom\":\"Saint-Martin-en-Campagne\",\"NOM_COM\":\"SAINT-MARTIN-EN-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":79,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21882,49.96157]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10720,\"INSEE_Comm\":\"28255\",\"nomCom\":\"Moinville-la-Jeulin\",\"NOM_COM\":\"MOINVILLE-LA-JEULIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70003,48.37578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10733,\"INSEE_Comm\":\"14603\",\"nomCom\":\"Saint-Laurent-de-Condel\",\"NOM_COM\":\"SAINT-LAURENT-DE-CONDEL\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39479,49.02609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10743,\"INSEE_Comm\":\"14441\",\"nomCom\":\"Mont-Bertrand\",\"NOM_COM\":\"MONT-BERTRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.91951,48.97281]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10746,\"INSEE_Comm\":\"80329\",\"nomCom\":\"Forceville\",\"NOM_COM\":\"FORCEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55544,50.06601]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10747,\"INSEE_Comm\":\"80065\",\"nomCom\":\"Beaucourt-sur-l'Ancre\",\"NOM_COM\":\"BEAUCOURT-SUR-L'ANCRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68398,50.08481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10748,\"INSEE_Comm\":\"80296\",\"nomCom\":\"�toile\",\"NOM_COM\":\"L'ETOILE\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.0379,50.02577]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10749,\"INSEE_Comm\":\"14632\",\"nomCom\":\"Saint-Martin-Don\",\"NOM_COM\":\"SAINT-MARTIN-DON\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.94663,48.92558]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10799,\"INSEE_Comm\":\"60374\",\"nomCom\":\"Maignelay-Montigny\",\"NOM_COM\":\"MAIGNELAY-MONTIGNY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":142,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51321,49.54818]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10803,\"INSEE_Comm\":\"76666\",\"nomCom\":\"Saumont-la-Poterie\",\"NOM_COM\":\"SAUMONT-LA-POTERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61491,49.57733]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10834,\"INSEE_Comm\":\"28234\",\"nomCom\":\"March�ville\",\"NOM_COM\":\"MARCHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2433,48.36385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10844,\"INSEE_Comm\":\"61099\",\"nomCom\":\"Chapelle-Sou�f\",\"NOM_COM\":\"LACHAPELLE-SOUEF\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58846,48.3177]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10850,\"INSEE_Comm\":\"14595\",\"nomCom\":\"Saint-Jean-de-Livet\",\"NOM_COM\":\"SAINT-JEAN-DE-LIVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24248,49.09339]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10878,\"INSEE_Comm\":\"27484\",\"nomCom\":\"Quessigny\",\"NOM_COM\":\"QUESSIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27539,48.93104]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10886,\"INSEE_Comm\":\"14708\",\"nomCom\":\"Tracy-Bocage\",\"NOM_COM\":\"TRACY-BOCAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68931,49.07258]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10897,\"INSEE_Comm\":\"78505\",\"nomCom\":\"Prunay-le-Temple\",\"NOM_COM\":\"PRUNAY-LE-TEMPLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6713,48.85929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10898,\"INSEE_Comm\":\"14237\",\"nomCom\":\"�mi�ville\",\"NOM_COM\":\"EMIEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":74,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22404,49.15361]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10899,\"INSEE_Comm\":\"14201\",\"nomCom\":\"Cr�vecoeur-en-Auge\",\"NOM_COM\":\"CREVECOEUR-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02057,49.12355]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10900,\"INSEE_Comm\":\"14600\",\"nomCom\":\"Saint-Julien-le-Faucon\",\"NOM_COM\":\"SAINT-JULIEN-LE-FAUCON\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08128,49.06711]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10901,\"INSEE_Comm\":\"61238\",\"nomCom\":\"Louvi�res-en-Auge\",\"NOM_COM\":\"LOUVIERES-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0285,48.86991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10902,\"INSEE_Comm\":\"14761\",\"nomCom\":\"Vimont\",\"NOM_COM\":\"VIMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":101,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.19449,49.14202]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10903,\"INSEE_Comm\":\"61189\",\"nomCom\":\"Giel-Courteilles\",\"NOM_COM\":\"GIEL-COURTEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.20799,48.76504]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10908,\"INSEE_Comm\":\"14698\",\"nomCom\":\"Touffr�ville\",\"NOM_COM\":\"TOUFFREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22509,49.19933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10916,\"INSEE_Comm\":\"14236\",\"nomCom\":\"Ellon\",\"NOM_COM\":\"ELLON\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68127,49.2276]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10959,\"INSEE_Comm\":\"14694\",\"nomCom\":\"Torquesne\",\"NOM_COM\":\"LETORQUESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16935,49.21812]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10960,\"INSEE_Comm\":\"14076\",\"nomCom\":\"Blainville-sur-Orne\",\"NOM_COM\":\"BLAINVILLE-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":498,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30433,49.22793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10961,\"INSEE_Comm\":\"14117\",\"nomCom\":\"Cabourg\",\"NOM_COM\":\"CABOURG\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":319,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.1255,49.2835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10962,\"INSEE_Comm\":\"76720\",\"nomCom\":\"Varengeville-sur-Mer\",\"NOM_COM\":\"VARENGEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99624,49.90355]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10963,\"INSEE_Comm\":\"76697\",\"nomCom\":\"Torcy-le-Grand\",\"NOM_COM\":\"TORCY-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17719,49.79438]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10964,\"INSEE_Comm\":\"76451\",\"nomCom\":\"Mont-Saint-Aignan\",\"NOM_COM\":\"MONT-SAINT-AIGNAN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7665\",\"nomCan\":\"Mont-Saint-Aignan\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":234,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08184,49.46771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10965,\"INSEE_Comm\":\"76100\",\"nomCom\":\"Blainville-Crevon\",\"NOM_COM\":\"BLAINVILLE-CREVON\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29182,49.50442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10966,\"INSEE_Comm\":\"27128\",\"nomCom\":\"Cantiers\",\"NOM_COM\":\"CANTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58392,49.23385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10967,\"INSEE_Comm\":\"76505\",\"nomCom\":\"Pommereux\",\"NOM_COM\":\"POMMEREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63086,49.60987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10968,\"INSEE_Comm\":\"80585\",\"nomCom\":\"Nesle\",\"NOM_COM\":\"NESLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.9099,49.75996]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10969,\"INSEE_Comm\":\"80138\",\"nomCom\":\"Bresle\",\"NOM_COM\":\"BRESLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54922,49.99039]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10970,\"INSEE_Comm\":\"60097\",\"nomCom\":\"Boutencourt\",\"NOM_COM\":\"BOUTENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87026,49.32056]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10971,\"INSEE_Comm\":\"60197\",\"nomCom\":\"Dieudonn�\",\"NOM_COM\":\"DIEUDONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24012,49.24097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10972,\"INSEE_Comm\":\"60100\",\"nomCom\":\"Brasseuse\",\"NOM_COM\":\"BRASSEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67877,49.25188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10973,\"INSEE_Comm\":\"60216\",\"nomCom\":\"Erquinvillers\",\"NOM_COM\":\"ERQUINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48947,49.45961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10974,\"INSEE_Comm\":\"60524\",\"nomCom\":\"Rantigny\",\"NOM_COM\":\"RANTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43553,49.33383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":10989,\"INSEE_Comm\":\"76130\",\"nomCom\":\"Bouelles\",\"NOM_COM\":\"BOUELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49218,49.72231]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11010,\"INSEE_Comm\":\"76132\",\"nomCom\":\"Bourdainville\",\"NOM_COM\":\"BOURDAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94009,49.67291]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11011,\"INSEE_Comm\":\"76494\",\"nomCom\":\"Parc-d'Anxtot\",\"NOM_COM\":\"PARC-D'ANXTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38829,49.58591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11012,\"INSEE_Comm\":\"76238\",\"nomCom\":\"�pouville\",\"NOM_COM\":\"EPOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23003,49.56323]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11013,\"INSEE_Comm\":\"76254\",\"nomCom\":\"�tretat\",\"NOM_COM\":\"ETRETAT\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20519,49.70462]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11014,\"INSEE_Comm\":\"76467\",\"nomCom\":\"N�ville\",\"NOM_COM\":\"NEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":72,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71056,49.82357]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11015,\"INSEE_Comm\":\"76239\",\"nomCom\":\"�pretot\",\"NOM_COM\":\"EPRETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31352,49.53813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11022,\"INSEE_Comm\":\"28363\",\"nomCom\":\"Sainville\",\"NOM_COM\":\"SAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88201,48.41539]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11044,\"INSEE_Comm\":\"28304\",\"nomCom\":\"Prasville\",\"NOM_COM\":\"PRASVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71167,48.27384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11046,\"INSEE_Comm\":\"14324\",\"nomCom\":\"Hamars\",\"NOM_COM\":\"HAMARS\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54738,49.00589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11067,\"INSEE_Comm\":\"14007\",\"nomCom\":\"Amay�-sur-Seulles\",\"NOM_COM\":\"AMAYE-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.71777,49.08204]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11069,\"INSEE_Comm\":\"14553\",\"nomCom\":\"Saint-Agnan-le-Malherbe\",\"NOM_COM\":\"SAINT-AGNAN-LE-MALHERBE\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58189,49.04018]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11075,\"INSEE_Comm\":\"80755\",\"nomCom\":\"Thieulloy-la-Ville\",\"NOM_COM\":\"THIEULLOY-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92963,49.74336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11077,\"INSEE_Comm\":\"80167\",\"nomCom\":\"Canchy\",\"NOM_COM\":\"CANCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8735,50.18717]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11117,\"INSEE_Comm\":\"60486\",\"nomCom\":\"Paillart\",\"NOM_COM\":\"PAILLART\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32062,49.66513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11126,\"INSEE_Comm\":\"80485\",\"nomCom\":\"Loeuilly\",\"NOM_COM\":\"LOEUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19571,49.77186]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11143,\"INSEE_Comm\":\"61269\",\"nomCom\":\"M�nil-Hubert-sur-Orne\",\"NOM_COM\":\"MENIL-HUBERT-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41615,48.84895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11144,\"INSEE_Comm\":\"27436\",\"nomCom\":\"Nogent-le-Sec\",\"NOM_COM\":\"NOGENT-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00454,48.92052]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11159,\"INSEE_Comm\":\"14137\",\"nomCom\":\"Carpiquet\",\"NOM_COM\":\"CARPIQUET\",\"Statut\":\"Communesimple\",\"idCan\":\"1409\",\"nomCan\":\"Caen2eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":146,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.45124,49.18675]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11161,\"INSEE_Comm\":\"14293\",\"nomCom\":\"Fumichon\",\"NOM_COM\":\"FUMICHON\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37668,49.17024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11166,\"INSEE_Comm\":\"27432\",\"nomCom\":\"Neuville-du-Bosc\",\"NOM_COM\":\"LANEUVILLE-DU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81555,49.19431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11172,\"INSEE_Comm\":\"76626\",\"nomCom\":\"Saint-Nicolas-de-la-Haie\",\"NOM_COM\":\"SAINT-NICOLAS-DE-LA-HAIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61794,49.56016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11175,\"INSEE_Comm\":\"61414\",\"nomCom\":\"Saint-Langis-l�s-Mortagne\",\"NOM_COM\":\"SAINT-LANGIS-LES-MORTAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53173,48.50985]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11179,\"INSEE_Comm\":\"95459\",\"nomCom\":\"Nucourt\",\"NOM_COM\":\"NUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85643,49.15954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11195,\"INSEE_Comm\":\"27652\",\"nomCom\":\"Tourneville\",\"NOM_COM\":\"TOURNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10595,49.09485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11198,\"INSEE_Comm\":\"27510\",\"nomCom\":\"Saint-Aquilin-de-Pacy\",\"NOM_COM\":\"SAINT-AQUILIN-DE-PACY\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35089,49.00971]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11213,\"INSEE_Comm\":\"27235\",\"nomCom\":\"Faverolles-la-Campagne\",\"NOM_COM\":\"FAVEROLLES-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92706,49.02063]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11218,\"INSEE_Comm\":\"27568\",\"nomCom\":\"Sainte-Marthe\",\"NOM_COM\":\"SAINTE-MARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88118,48.95788]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11222,\"INSEE_Comm\":\"95091\",\"nomCom\":\"Bouff�mont\",\"NOM_COM\":\"BOUFFEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"9506\",\"nomCan\":\"Domont\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":61,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29838,49.04157]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11230,\"INSEE_Comm\":\"61497\",\"nomCom\":\"Valframbert\",\"NOM_COM\":\"VALFRAMBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":83,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11055,48.46487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11233,\"INSEE_Comm\":\"61178\",\"nomCom\":\"Fresnaie-Fayel\",\"NOM_COM\":\"LAFRESNAIE-FAYEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22743,48.83332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11235,\"INSEE_Comm\":\"61068\",\"nomCom\":\"Bursard\",\"NOM_COM\":\"BURSARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20335,48.54098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11250,\"INSEE_Comm\":\"14534\",\"nomCom\":\"Reux\",\"NOM_COM\":\"REUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15346,49.27649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11259,\"INSEE_Comm\":\"78464\",\"nomCom\":\"Orcemont\",\"NOM_COM\":\"ORCEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80956,48.59686]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11260,\"INSEE_Comm\":\"78164\",\"nomCom\":\"Clairefontaine-en-Yvelines\",\"NOM_COM\":\"CLAIREFONTAINE-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90639,48.61677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11262,\"INSEE_Comm\":\"14047\",\"nomCom\":\"Bayeux\",\"NOM_COM\":\"BAYEUX\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":487,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.70521,49.27778]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11264,\"INSEE_Comm\":\"14354\",\"nomCom\":\"Langrune-sur-Mer\",\"NOM_COM\":\"LANGRUNE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37821,49.31299]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11279,\"INSEE_Comm\":\"14598\",\"nomCom\":\"Saint-Jouin\",\"NOM_COM\":\"SAINT-JOUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.01296,49.21756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11282,\"INSEE_Comm\":\"14680\",\"nomCom\":\"Sully\",\"NOM_COM\":\"SULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.74173,49.3004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11283,\"INSEE_Comm\":\"76711\",\"nomCom\":\"Tr�port\",\"NOM_COM\":\"LETREPORT\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.37262,50.05338]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11284,\"INSEE_Comm\":\"27620\",\"nomCom\":\"Selles\",\"NOM_COM\":\"SELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48886,49.30117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11285,\"INSEE_Comm\":\"76032\",\"nomCom\":\"Auberville-la-Manuel\",\"NOM_COM\":\"AUBERVILLE-LA-MANUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58417,49.82917]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11286,\"INSEE_Comm\":\"27205\",\"nomCom\":\"Douville-sur-Andelle\",\"NOM_COM\":\"DOUVILLE-SUR-ANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30757,49.33292]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11287,\"INSEE_Comm\":\"76445\",\"nomCom\":\"Mont�rolier\",\"NOM_COM\":\"MONTEROLIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34615,49.62236]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11288,\"INSEE_Comm\":\"80179\",\"nomCom\":\"Cauli�res\",\"NOM_COM\":\"CAULIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89908,49.78678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11289,\"INSEE_Comm\":\"80278\",\"nomCom\":\"Erches\",\"NOM_COM\":\"ERCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67246,49.72435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11290,\"INSEE_Comm\":\"60557\",\"nomCom\":\"Roy-Boissy\",\"NOM_COM\":\"ROY-BOISSY\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91999,49.58028]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11291,\"INSEE_Comm\":\"60312\",\"nomCom\":\"H�ricourt-sur-Th�rain\",\"NOM_COM\":\"HERICOURT-SUR-THERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76355,49.58666]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11292,\"INSEE_Comm\":\"60435\",\"nomCom\":\"Morvillers\",\"NOM_COM\":\"MORVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87218,49.58438]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11293,\"INSEE_Comm\":\"60373\",\"nomCom\":\"Machemont\",\"NOM_COM\":\"MACHEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.87555,49.50994]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11294,\"INSEE_Comm\":\"60562\",\"nomCom\":\"Sacy-le-Grand\",\"NOM_COM\":\"SACY-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55501,49.35669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11295,\"INSEE_Comm\":\"60056\",\"nomCom\":\"Beaurepaire\",\"NOM_COM\":\"BEAUREPAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56952,49.29169]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11296,\"INSEE_Comm\":\"80732\",\"nomCom\":\"Senarpont\",\"NOM_COM\":\"SENARPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71835,49.89144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11297,\"INSEE_Comm\":\"80515\",\"nomCom\":\"Marlers\",\"NOM_COM\":\"MARLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85023,49.75907]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11299,\"INSEE_Comm\":\"60118\",\"nomCom\":\"Caisnes\",\"NOM_COM\":\"CAISNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06454,49.52012]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11336,\"INSEE_Comm\":\"76608\",\"nomCom\":\"Sainte-Marguerite-sur-Duclair\",\"NOM_COM\":\"SAINTE-MARGUERITE-SUR-DUCLAIR\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":148,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8217,49.51229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11337,\"INSEE_Comm\":\"76667\",\"nomCom\":\"Sauqueville\",\"NOM_COM\":\"SAUQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05942,49.84826]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11341,\"INSEE_Comm\":\"28207\",\"nomCom\":\"L�thuin\",\"NOM_COM\":\"LETHUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86193,48.37688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11363,\"INSEE_Comm\":\"27269\",\"nomCom\":\"Fresne-Cauverville\",\"NOM_COM\":\"FRESNE-CAUVERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4688,49.20129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11372,\"INSEE_Comm\":\"78672\",\"nomCom\":\"Villennes-sur-Seine\",\"NOM_COM\":\"VILLENNES-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7816\",\"nomCan\":\"Poissy-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":206,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99587,48.93682]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11373,\"INSEE_Comm\":\"28309\",\"nomCom\":\"Prunay-le-Gillon\",\"NOM_COM\":\"PRUNAY-LE-GILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2825\",\"nomCan\":\"Chartres-Sud-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6354,48.36652]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11374,\"INSEE_Comm\":\"28004\",\"nomCom\":\"Allonnes\",\"NOM_COM\":\"ALLONNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65201,48.33163]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11383,\"INSEE_Comm\":\"14635\",\"nomCom\":\"Saint-Omer\",\"NOM_COM\":\"SAINT-OMER\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4438,48.92835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11394,\"INSEE_Comm\":\"95199\",\"nomCom\":\"Domont\",\"NOM_COM\":\"DOMONT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9506\",\"nomCan\":\"Domont\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":258,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3229,49.02967]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11400,\"INSEE_Comm\":\"80617\",\"nomCom\":\"Parvillers-le-Quesnoy\",\"NOM_COM\":\"PARVILLERS-LE-QUESNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72555,49.74665]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11402,\"INSEE_Comm\":\"80469\",\"nomCom\":\"Lawarde-Mauger-l'Hortoy\",\"NOM_COM\":\"LAWARDE-MAUGER-L'HORTOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27145,49.71206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11415,\"INSEE_Comm\":\"95480\",\"nomCom\":\"Parmain\",\"NOM_COM\":\"PARMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9514\",\"nomCan\":\"Isle-Adam\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":115,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20128,49.12287]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11421,\"INSEE_Comm\":\"61376\",\"nomCom\":\"Saint-Clair-de-Halouze\",\"NOM_COM\":\"SAINT-CLAIR-DE-HALOUZE\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62603,48.68911]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11469,\"INSEE_Comm\":\"28231\",\"nomCom\":\"Manceli�re\",\"NOM_COM\":\"LAMANCELIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98522,48.64296]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11476,\"INSEE_Comm\":\"80024\",\"nomCom\":\"Argoeuves\",\"NOM_COM\":\"ARGOEUVES\",\"Statut\":\"Communesimple\",\"idCan\":\"8008\",\"nomCan\":\"Amiens2e(Nord-Ouest)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24676,49.94139]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11486,\"INSEE_Comm\":\"80374\",\"nomCom\":\"Gapennes\",\"NOM_COM\":\"GAPENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95226,50.17831]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11492,\"INSEE_Comm\":\"61059\",\"nomCom\":\"Bresolettes\",\"NOM_COM\":\"BRESOLETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62587,48.63127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11506,\"INSEE_Comm\":\"80056\",\"nomCom\":\"Bavelincourt\",\"NOM_COM\":\"BAVELINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44959,50.00065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11507,\"INSEE_Comm\":\"28377\",\"nomCom\":\"Sorel-Moussel\",\"NOM_COM\":\"SOREL-MOUSSEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3939,48.82938]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11516,\"INSEE_Comm\":\"27292\",\"nomCom\":\"Goutti�res\",\"NOM_COM\":\"GOUTTIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73834,49.01831]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11518,\"INSEE_Comm\":\"28329\",\"nomCom\":\"Saint-Christophe\",\"NOM_COM\":\"SAINT-CHRISTOPHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36946,48.132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11522,\"INSEE_Comm\":\"61406\",\"nomCom\":\"Saint-Hilaire-sur-Risle\",\"NOM_COM\":\"SAINT-HILAIRE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50784,48.72457]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11528,\"INSEE_Comm\":\"27127\",\"nomCom\":\"Canappeville\",\"NOM_COM\":\"CANAPPEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08933,49.15726]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11531,\"INSEE_Comm\":\"78643\",\"nomCom\":\"Vernouillet\",\"NOM_COM\":\"VERNOUILLET\",\"Statut\":\"Communesimple\",\"idCan\":\"7825\",\"nomCan\":\"Triel-sur-Seine\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":68,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9753,48.96557]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11532,\"INSEE_Comm\":\"78681\",\"nomCom\":\"Villiers-le-Mahieu\",\"NOM_COM\":\"VILLIERS-LE-MAHIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7738,48.85334]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11533,\"INSEE_Comm\":\"78007\",\"nomCom\":\"Aigremont\",\"NOM_COM\":\"AIGREMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7821\",\"nomCan\":\"Saint-Germain-en-Laye-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01536,48.90084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11534,\"INSEE_Comm\":\"61380\",\"nomCom\":\"Saint-Denis-de-Villenette\",\"NOM_COM\":\"SAINT-DENIS-DE-VILLENETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54676,48.51177]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11535,\"INSEE_Comm\":\"14020\",\"nomCom\":\"Argences\",\"NOM_COM\":\"ARGENCES\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":226,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15805,49.13423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11536,\"INSEE_Comm\":\"14313\",\"nomCom\":\"Grandchamp-le-Ch�teau\",\"NOM_COM\":\"GRANDCHAMP-LE-CHATEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07468,49.08417]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11556,\"INSEE_Comm\":\"28047\",\"nomCom\":\"Boisville-la-Saint-P�re\",\"NOM_COM\":\"BOISVILLE-LA-SAINT-PERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69988,48.33204]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11557,\"INSEE_Comm\":\"78334\",\"nomCom\":\"L�vis-Saint-Nom\",\"NOM_COM\":\"LEVIS-SAINT-NOM\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93544,48.72661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11559,\"INSEE_Comm\":\"60631\",\"nomCom\":\"Thiers-sur-Th�ve\",\"NOM_COM\":\"THIERS-SUR-THEVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57821,49.15364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11583,\"INSEE_Comm\":\"14606\",\"nomCom\":\"Saint-L�ger-Dubosq\",\"NOM_COM\":\"SAINT-LEGER-DUBOSQ\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.01479,49.23024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11584,\"INSEE_Comm\":\"76398\",\"nomCom\":\"Louvetot\",\"NOM_COM\":\"LOUVETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72337,49.57271]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11585,\"INSEE_Comm\":\"76266\",\"nomCom\":\"Flocques\",\"NOM_COM\":\"FLOCQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36476,50.03489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11586,\"INSEE_Comm\":\"76229\",\"nomCom\":\"Elbeuf-en-Bray\",\"NOM_COM\":\"ELBEUF-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65159,49.49383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11587,\"INSEE_Comm\":\"76420\",\"nomCom\":\"Mauquenchy\",\"NOM_COM\":\"MAUQUENCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46081,49.59906]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11588,\"INSEE_Comm\":\"76544\",\"nomCom\":\"Rouvray-Catillon\",\"NOM_COM\":\"ROUVRAY-CATILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47742,49.57657]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11589,\"INSEE_Comm\":\"80015\",\"nomCom\":\"Aizecourt-le-Haut\",\"NOM_COM\":\"AIZECOURT-LE-HAUT\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.9825,49.96695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11590,\"INSEE_Comm\":\"80258\",\"nomCom\":\"Driencourt\",\"NOM_COM\":\"DRIENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00525,49.95752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11591,\"INSEE_Comm\":\"80162\",\"nomCom\":\"Caix\",\"NOM_COM\":\"CAIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64568,49.81075]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11592,\"INSEE_Comm\":\"60161\",\"nomCom\":\"Conteville\",\"NOM_COM\":\"CONTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05414,49.65345]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11593,\"INSEE_Comm\":\"60065\",\"nomCom\":\"Berthecourt\",\"NOM_COM\":\"BERTHECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2228,49.34514]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11594,\"INSEE_Comm\":\"60644\",\"nomCom\":\"Trie-Ch�teau\",\"NOM_COM\":\"TRIE-CHATEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81401,49.28672]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11595,\"INSEE_Comm\":\"60624\",\"nomCom\":\"Sully\",\"NOM_COM\":\"SULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77942,49.5583]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11596,\"INSEE_Comm\":\"60301\",\"nomCom\":\"Haucourt\",\"NOM_COM\":\"HAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93107,49.50619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11597,\"INSEE_Comm\":\"60383\",\"nomCom\":\"Margny-sur-Matz\",\"NOM_COM\":\"MARGNY-SUR-MATZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77885,49.52927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11598,\"INSEE_Comm\":\"60503\",\"nomCom\":\"Ployron\",\"NOM_COM\":\"LEPLOYRON\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58181,49.58636]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11599,\"INSEE_Comm\":\"80670\",\"nomCom\":\"Revelles\",\"NOM_COM\":\"REVELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11437,49.84003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11600,\"INSEE_Comm\":\"60200\",\"nomCom\":\"Domfront\",\"NOM_COM\":\"DOMFRONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55703,49.59912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11601,\"INSEE_Comm\":\"80663\",\"nomCom\":\"Rambures\",\"NOM_COM\":\"RAMBURES\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69572,49.94067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11602,\"INSEE_Comm\":\"60545\",\"nomCom\":\"Romescamps\",\"NOM_COM\":\"ROMESCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8004,49.71219]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11615,\"INSEE_Comm\":\"80563\",\"nomCom\":\"Montigny-les-Jongleurs\",\"NOM_COM\":\"MONTIGNY-LES-JONGLEURS\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13581,50.17823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11632,\"INSEE_Comm\":\"76716\",\"nomCom\":\"Turretot\",\"NOM_COM\":\"TURRETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.2406,49.61007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11633,\"INSEE_Comm\":\"76737\",\"nomCom\":\"Vibeuf\",\"NOM_COM\":\"VIBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91293,49.68965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11634,\"INSEE_Comm\":\"76637\",\"nomCom\":\"Saint-Pierre-en-Port\",\"NOM_COM\":\"SAINT-PIERRE-EN-PORT\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5002,49.80734]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11635,\"INSEE_Comm\":\"76718\",\"nomCom\":\"Valliquerville\",\"NOM_COM\":\"VALLIQUERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71079,49.61699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11636,\"INSEE_Comm\":\"76325\",\"nomCom\":\"Gr�monville\",\"NOM_COM\":\"GREMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82888,49.66148]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11637,\"INSEE_Comm\":\"78147\",\"nomCom\":\"Chaufour-l�s-Bonni�res\",\"NOM_COM\":\"CHAUFOUR-LES-BONNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48537,49.01584]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11641,\"INSEE_Comm\":\"27400\",\"nomCom\":\"Merey\",\"NOM_COM\":\"MEREY\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39284,48.95867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11655,\"INSEE_Comm\":\"27308\",\"nomCom\":\"Guitry\",\"NOM_COM\":\"GUITRY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54898,49.21964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11656,\"INSEE_Comm\":\"27098\",\"nomCom\":\"Bouchevilliers\",\"NOM_COM\":\"BOUCHEVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71161,49.39848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11665,\"INSEE_Comm\":\"76139\",\"nomCom\":\"Bradiancourt\",\"NOM_COM\":\"BRADIANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38523,49.66021]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11670,\"INSEE_Comm\":\"78291\",\"nomCom\":\"Guerville\",\"NOM_COM\":\"GUERVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74081,48.95237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11683,\"INSEE_Comm\":\"78616\",\"nomCom\":\"Thoiry\",\"NOM_COM\":\"THOIRY\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":131,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7978,48.87246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11689,\"INSEE_Comm\":\"80120\",\"nomCom\":\"Bouillancourt-en-S�ry\",\"NOM_COM\":\"BOUILLANCOURT-EN-SERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63027,49.96]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11692,\"INSEE_Comm\":\"80595\",\"nomCom\":\"Neuville-Sire-Bernard\",\"NOM_COM\":\"LANEUVILLE-SIRE-BERNARD\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52314,49.7428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11695,\"INSEE_Comm\":\"80357\",\"nomCom\":\"Fresnoy-au-Val\",\"NOM_COM\":\"FRESNOY-AU-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05144,49.83749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11696,\"INSEE_Comm\":\"80525\",\"nomCom\":\"Meigneux\",\"NOM_COM\":\"MEIGNEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89058,49.76689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11699,\"INSEE_Comm\":\"80679\",\"nomCom\":\"Ronssoy\",\"NOM_COM\":\"RONSSOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.1674,49.98152]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11709,\"INSEE_Comm\":\"95627\",\"nomCom\":\"Vallangoujard\",\"NOM_COM\":\"VALLANGOUJARD\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10413,49.13427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11734,\"INSEE_Comm\":\"60563\",\"nomCom\":\"Sacy-le-Petit\",\"NOM_COM\":\"SACY-LE-PETIT\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62778,49.36989]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11739,\"INSEE_Comm\":\"14602\",\"nomCom\":\"Saint-Lambert\",\"NOM_COM\":\"SAINT-LAMBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.538,48.93532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11765,\"INSEE_Comm\":\"61065\",\"nomCom\":\"Bubertr�\",\"NOM_COM\":\"BUBERTRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60391,48.59128]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11782,\"INSEE_Comm\":\"28038\",\"nomCom\":\"B�thonvilliers\",\"NOM_COM\":\"BETHONVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90003,48.23097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11793,\"INSEE_Comm\":\"14439\",\"nomCom\":\"Monfr�ville\",\"NOM_COM\":\"MONFREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.03483,49.31212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11802,\"INSEE_Comm\":\"78231\",\"nomCom\":\"Favrieux\",\"NOM_COM\":\"FAVRIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64167,48.94484]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11803,\"INSEE_Comm\":\"78194\",\"nomCom\":\"Dannemarie\",\"NOM_COM\":\"DANNEMARIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60897,48.76397]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11806,\"INSEE_Comm\":\"28017\",\"nomCom\":\"Autheuil\",\"NOM_COM\":\"AUTHEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29521,48.00687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11814,\"INSEE_Comm\":\"28387\",\"nomCom\":\"Thiron-Gardais\",\"NOM_COM\":\"THIRON-GARDAIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01132,48.30476]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11815,\"INSEE_Comm\":\"27191\",\"nomCom\":\"Croix-Saint-Leufroy\",\"NOM_COM\":\"LACROIX-SAINT-LEUFROY\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24841,49.1183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11820,\"INSEE_Comm\":\"27075\",\"nomCom\":\"Bois-Normand-pr�s-Lyre\",\"NOM_COM\":\"BOIS-NORMAND-PRES-LYRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69372,48.90059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11821,\"INSEE_Comm\":\"60259\",\"nomCom\":\"Fresnoy-en-Thelle\",\"NOM_COM\":\"FRESNOY-EN-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26221,49.19908]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11822,\"INSEE_Comm\":\"95392\",\"nomCom\":\"M�riel\",\"NOM_COM\":\"MERIEL\",\"Statut\":\"Communesimple\",\"idCan\":\"9514\",\"nomCan\":\"Isle-Adam\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":105,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21325,49.07716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11823,\"INSEE_Comm\":\"61340\",\"nomCom\":\"Rabodanges\",\"NOM_COM\":\"RABODANGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29014,48.79992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11824,\"INSEE_Comm\":\"14106\",\"nomCom\":\"Br�ville-les-Monts\",\"NOM_COM\":\"BREVILLE-LES-MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22087,49.23616]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11825,\"INSEE_Comm\":\"14455\",\"nomCom\":\"Moulines\",\"NOM_COM\":\"MOULINES\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34734,48.99205]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11828,\"INSEE_Comm\":\"61346\",\"nomCom\":\"Renouard\",\"NOM_COM\":\"LERENOUARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09889,48.91976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11829,\"INSEE_Comm\":\"61424\",\"nomCom\":\"Saint-Martin-des-Landes\",\"NOM_COM\":\"SAINT-MARTIN-DES-LANDES\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15641,48.54624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11830,\"INSEE_Comm\":\"61290\",\"nomCom\":\"Montreuil-au-Houlme\",\"NOM_COM\":\"MONTREUIL-AU-HOULME\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26647,48.68169]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11841,\"INSEE_Comm\":\"14003\",\"nomCom\":\"Agy\",\"NOM_COM\":\"AGY\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.7783,49.23759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11850,\"INSEE_Comm\":\"78575\",\"nomCom\":\"Saint-R�my-l�s-Chevreuse\",\"NOM_COM\":\"SAINT-REMY-LES-CHEVREUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":152,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07901,48.70383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11876,\"INSEE_Comm\":\"14306\",\"nomCom\":\"Gonneville-en-Auge\",\"NOM_COM\":\"GONNEVILLE-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.18836,49.25924]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11877,\"INSEE_Comm\":\"27536\",\"nomCom\":\"Saint-�loi-de-Fourques\",\"NOM_COM\":\"SAINT-ELOI-DE-FOURQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80278,49.23567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11878,\"INSEE_Comm\":\"27603\",\"nomCom\":\"Saint-Sim�on\",\"NOM_COM\":\"SAINT-SIMEON\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51682,49.2843]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11879,\"INSEE_Comm\":\"76530\",\"nomCom\":\"Robertot\",\"NOM_COM\":\"ROBERTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69599,49.71483]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11880,\"INSEE_Comm\":\"76313\",\"nomCom\":\"Gouy\",\"NOM_COM\":\"GOUY\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14306,49.35771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11881,\"INSEE_Comm\":\"76376\",\"nomCom\":\"Intraville\",\"NOM_COM\":\"INTRAVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27466,49.93002]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11882,\"INSEE_Comm\":\"80375\",\"nomCom\":\"Gauville\",\"NOM_COM\":\"GAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78754,49.78089]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11883,\"INSEE_Comm\":\"80154\",\"nomCom\":\"Bussu\",\"NOM_COM\":\"BUSSU\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97568,49.94645]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11884,\"INSEE_Comm\":\"80407\",\"nomCom\":\"Hallivillers\",\"NOM_COM\":\"HALLIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29565,49.69617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11885,\"INSEE_Comm\":\"60604\",\"nomCom\":\"Sarcus\",\"NOM_COM\":\"SARCUS\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87577,49.68085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11886,\"INSEE_Comm\":\"60685\",\"nomCom\":\"Villers-Saint-S�pulcre\",\"NOM_COM\":\"VILLERS-SAINT-SEPULCRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20925,49.36895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11887,\"INSEE_Comm\":\"60306\",\"nomCom\":\"H�court\",\"NOM_COM\":\"HECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77953,49.5238]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11888,\"INSEE_Comm\":\"60049\",\"nomCom\":\"Bazancourt\",\"NOM_COM\":\"BAZANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73943,49.54988]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11889,\"INSEE_Comm\":\"60589\",\"nomCom\":\"Saint-Maximin\",\"NOM_COM\":\"SAINT-MAXIMIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6036\",\"nomCan\":\"Chantilly\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":192,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45928,49.22441]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11890,\"INSEE_Comm\":\"60157\",\"nomCom\":\"Clermont\",\"NOM_COM\":\"CLERMONT\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":226,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4085,49.3777]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11891,\"INSEE_Comm\":\"80643\",\"nomCom\":\"Prouzel\",\"NOM_COM\":\"PROUZEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18959,49.81409]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11892,\"INSEE_Comm\":\"80698\",\"nomCom\":\"Saint-Aubin-Montenoy\",\"NOM_COM\":\"SAINT-AUBIN-MONTENOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.0022,49.842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11893,\"INSEE_Comm\":\"80301\",\"nomCom\":\"Famechon\",\"NOM_COM\":\"FAMECHON\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03229,49.76701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11930,\"INSEE_Comm\":\"28137\",\"nomCom\":\"�crosnes\",\"NOM_COM\":\"ECROSNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73392,48.55357]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11935,\"INSEE_Comm\":\"27539\",\"nomCom\":\"Saint-�tienne-sous-Bailleul\",\"NOM_COM\":\"SAINT-ETIENNE-SOUS-BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40531,49.11576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11952,\"INSEE_Comm\":\"61339\",\"nomCom\":\"Putanges-Pont-�crepin\",\"NOM_COM\":\"PUTANGES-PONT-ECREPIN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.25222,48.76645]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11957,\"INSEE_Comm\":\"61083\",\"nomCom\":\"Chambois\",\"NOM_COM\":\"CHAMBOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11253,48.81588]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11960,\"INSEE_Comm\":\"28091\",\"nomCom\":\"Ch�telliers-Notre-Dame\",\"NOM_COM\":\"LESCHATELLIERS-NOTRE-DAME\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20992,48.34655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11969,\"INSEE_Comm\":\"14164\",\"nomCom\":\"Clinchamps-sur-Orne\",\"NOM_COM\":\"CLINCHAMPS-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.40397,49.08279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11971,\"INSEE_Comm\":\"95052\",\"nomCom\":\"Beaumont-sur-Oise\",\"NOM_COM\":\"BEAUMONT-SUR-OISE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":232,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30021,49.1401]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11972,\"INSEE_Comm\":\"95203\",\"nomCom\":\"Eaubonne\",\"NOM_COM\":\"EAUBONNE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9507\",\"nomCan\":\"Eaubonne\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":403,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27786,48.99084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11973,\"INSEE_Comm\":\"95652\",\"nomCom\":\"Viarmes\",\"NOM_COM\":\"VIARMES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":191,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.378,49.12311]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11976,\"INSEE_Comm\":\"78380\",\"nomCom\":\"Maule\",\"NOM_COM\":\"MAULE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":82,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83959,48.90786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11980,\"INSEE_Comm\":\"80159\",\"nomCom\":\"Cachy\",\"NOM_COM\":\"CACHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47681,49.85749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11981,\"INSEE_Comm\":\"80726\",\"nomCom\":\"Sancourt\",\"NOM_COM\":\"SANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04409,49.77025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11982,\"INSEE_Comm\":\"80526\",\"nomCom\":\"Meillard\",\"NOM_COM\":\"LEMEILLARD\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1986,50.17089]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11984,\"INSEE_Comm\":\"14052\",\"nomCom\":\"Beaulieu\",\"NOM_COM\":\"BEAULIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81856,48.91723]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11991,\"INSEE_Comm\":\"80036\",\"nomCom\":\"Aubigny\",\"NOM_COM\":\"AUBIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47173,49.88757]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11993,\"INSEE_Comm\":\"78444\",\"nomCom\":\"Neauphlette\",\"NOM_COM\":\"NEAUPHLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54228,48.93533]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":11994,\"INSEE_Comm\":\"76337\",\"nomCom\":\"Guilm�court\",\"NOM_COM\":\"GUILMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30311,49.96295]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12008,\"INSEE_Comm\":\"61095\",\"nomCom\":\"Chapelle-Biche\",\"NOM_COM\":\"LACHAPELLE-BICHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62213,48.71285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12030,\"INSEE_Comm\":\"61046\",\"nomCom\":\"Bizou\",\"NOM_COM\":\"BIZOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75068,48.49205]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12045,\"INSEE_Comm\":\"14101\",\"nomCom\":\"Bretteville-sur-Odon\",\"NOM_COM\":\"BRETTEVILLE-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1408\",\"nomCan\":\"Caen1erCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42169,49.17323]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12046,\"INSEE_Comm\":\"14744\",\"nomCom\":\"Vienne-en-Bessin\",\"NOM_COM\":\"VIENNE-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62775,49.28121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12051,\"INSEE_Comm\":\"28394\",\"nomCom\":\"Tr�on\",\"NOM_COM\":\"TREON\",\"Statut\":\"Communesimple\",\"idCan\":\"2828\",\"nomCan\":\"Dreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32504,48.67525]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12057,\"INSEE_Comm\":\"28299\",\"nomCom\":\"Pinthi�res\",\"NOM_COM\":\"LESPINTHIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57393,48.70472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12058,\"INSEE_Comm\":\"80260\",\"nomCom\":\"Drucat\",\"NOM_COM\":\"DRUCAT\",\"Statut\":\"Communesimple\",\"idCan\":\"8001\",\"nomCan\":\"Abbeville-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8613,50.14597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12064,\"INSEE_Comm\":\"61363\",\"nomCom\":\"Saint-Aquilin-de-Corbion\",\"NOM_COM\":\"SAINT-AQUILIN-DE-CORBION\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5274,48.64102]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12075,\"INSEE_Comm\":\"28271\",\"nomCom\":\"Morvilliers\",\"NOM_COM\":\"MORVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94675,48.64909]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12076,\"INSEE_Comm\":\"61476\",\"nomCom\":\"Sur�\",\"NOM_COM\":\"SURE\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40633,48.36899]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12085,\"INSEE_Comm\":\"28010\",\"nomCom\":\"Argenvilliers\",\"NOM_COM\":\"ARGENVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96914,48.2764]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12086,\"INSEE_Comm\":\"61204\",\"nomCom\":\"Hermiti�re\",\"NOM_COM\":\"L'HERMITIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65933,48.28407]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12101,\"INSEE_Comm\":\"27036\",\"nomCom\":\"B�lines\",\"NOM_COM\":\"BALINES\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97751,48.74828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12102,\"INSEE_Comm\":\"27047\",\"nomCom\":\"Beaubray\",\"NOM_COM\":\"BEAUBRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90092,48.91051]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12107,\"INSEE_Comm\":\"14619\",\"nomCom\":\"Sainte-Marie-Outre-l'Eau\",\"NOM_COM\":\"SAINTE-MARIE-OUTRE-L'EAU\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.0213,48.93016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12118,\"INSEE_Comm\":\"27576\",\"nomCom\":\"Sainte-Opportune-du-Bosc\",\"NOM_COM\":\"SAINTE-OPPORTUNE-DU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84038,49.16794]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12121,\"INSEE_Comm\":\"61274\",\"nomCom\":\"Menus\",\"NOM_COM\":\"LESMENUS\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9337,48.51799]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12122,\"INSEE_Comm\":\"78233\",\"nomCom\":\"Feucherolles\",\"NOM_COM\":\"FEUCHEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97984,48.88009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12123,\"INSEE_Comm\":\"14489\",\"nomCom\":\"Ouville-la-Bien-Tourn�e\",\"NOM_COM\":\"OUVILLE-LA-BIEN-TOURNEE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.02998,49.05256]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12124,\"INSEE_Comm\":\"14627\",\"nomCom\":\"Saint-Martin-de-Mieux\",\"NOM_COM\":\"SAINT-MARTIN-DE-MIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24062,48.87351]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12126,\"INSEE_Comm\":\"14335\",\"nomCom\":\"Hotot-en-Auge\",\"NOM_COM\":\"HOTOT-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0764,49.1775]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12127,\"INSEE_Comm\":\"61477\",\"nomCom\":\"Survie\",\"NOM_COM\":\"SURVIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18897,48.84043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12128,\"INSEE_Comm\":\"61123\",\"nomCom\":\"Coulonces\",\"NOM_COM\":\"COULONCES\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.01547,48.83204]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12129,\"INSEE_Comm\":\"14290\",\"nomCom\":\"Fresney-le-Puceux\",\"NOM_COM\":\"FRESNEY-LE-PUCEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35307,49.0661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12150,\"INSEE_Comm\":\"78562\",\"nomCom\":\"Saint-L�ger-en-Yvelines\",\"NOM_COM\":\"SAINT-LEGER-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75991,48.73003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12152,\"INSEE_Comm\":\"60446\",\"nomCom\":\"Nanteuil-le-Haudouin\",\"NOM_COM\":\"NANTEUIL-LE-HAUDOUIN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":144,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81039,49.13684]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12177,\"INSEE_Comm\":\"14055\",\"nomCom\":\"Beaumont-en-Auge\",\"NOM_COM\":\"BEAUMONT-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11018,49.26738]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12178,\"INSEE_Comm\":\"76414\",\"nomCom\":\"Martin-�glise\",\"NOM_COM\":\"MARTIN-EGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":81,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13197,49.90999]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12179,\"INSEE_Comm\":\"76644\",\"nomCom\":\"Saint-R�my-Boscrocourt\",\"NOM_COM\":\"SAINT-REMY-BOSCROCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39185,50.00995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12180,\"INSEE_Comm\":\"76417\",\"nomCom\":\"Maucomble\",\"NOM_COM\":\"MAUCOMBLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33357,49.68747]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12181,\"INSEE_Comm\":\"76645\",\"nomCom\":\"Saint-Riquier-en-Rivi�re\",\"NOM_COM\":\"SAINT-RIQUIER-EN-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57256,49.88455]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12182,\"INSEE_Comm\":\"76185\",\"nomCom\":\"Compainville\",\"NOM_COM\":\"COMPAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55975,49.65846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12183,\"INSEE_Comm\":\"80813\",\"nomCom\":\"Vraignes-l�s-Hornoy\",\"NOM_COM\":\"VRAIGNES-LES-HORNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9087,49.82411]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12184,\"INSEE_Comm\":\"80568\",\"nomCom\":\"Morchain\",\"NOM_COM\":\"MORCHAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.92317,49.80031]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12185,\"INSEE_Comm\":\"80336\",\"nomCom\":\"Foucaucourt-Hors-Nesle\",\"NOM_COM\":\"FOUCAUCOURT-HORS-NESLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71782,49.91758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12186,\"INSEE_Comm\":\"60109\",\"nomCom\":\"Brombos\",\"NOM_COM\":\"BROMBOS\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88822,49.64551]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12187,\"INSEE_Comm\":\"60564\",\"nomCom\":\"Sains-Morainvillers\",\"NOM_COM\":\"SAINS-MORAINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46397,49.57849]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12188,\"INSEE_Comm\":\"60533\",\"nomCom\":\"Ressons-sur-Matz\",\"NOM_COM\":\"RESSONS-SUR-MATZ\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":117,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73203,49.53375]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12189,\"INSEE_Comm\":\"60138\",\"nomCom\":\"Chamant\",\"NOM_COM\":\"CHAMANT\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61918,49.22584]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12190,\"INSEE_Comm\":\"60468\",\"nomCom\":\"Nourard-le-Franc\",\"NOM_COM\":\"NOURARD-LE-FRANC\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36369,49.50079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12191,\"INSEE_Comm\":\"80582\",\"nomCom\":\"Namps-Maisnil\",\"NOM_COM\":\"NAMPS-MAISNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.123,49.80613]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12192,\"INSEE_Comm\":\"80293\",\"nomCom\":\"�telfay\",\"NOM_COM\":\"ETELFAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61086,49.66435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12207,\"INSEE_Comm\":\"80215\",\"nomCom\":\"Coulonvillers\",\"NOM_COM\":\"COULONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01778,50.15336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12211,\"INSEE_Comm\":\"76416\",\"nomCom\":\"Mathonville\",\"NOM_COM\":\"MATHONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38238,49.6233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12227,\"INSEE_Comm\":\"76577\",\"nomCom\":\"Sainte-Foy\",\"NOM_COM\":\"SAINTE-FOY\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13944,49.79894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12228,\"INSEE_Comm\":\"76031\",\"nomCom\":\"Auberville-la-Campagne\",\"NOM_COM\":\"AUBERVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5959,49.53578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12229,\"INSEE_Comm\":\"76586\",\"nomCom\":\"Saint-Gilles-de-la-Neuville\",\"NOM_COM\":\"SAINT-GILLES-DE-LA-NEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37056,49.5729]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12230,\"INSEE_Comm\":\"76698\",\"nomCom\":\"Torcy-le-Petit\",\"NOM_COM\":\"TORCY-LE-PETIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18043,49.81516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12238,\"INSEE_Comm\":\"78118\",\"nomCom\":\"Buchelay\",\"NOM_COM\":\"BUCHELAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7833\",\"nomCan\":\"Mantes-la-Ville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":240,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67437,48.9837]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12249,\"INSEE_Comm\":\"27519\",\"nomCom\":\"Sainte-Barbe-sur-Gaillon\",\"NOM_COM\":\"SAINTE-BARBE-SUR-GAILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3013,49.16142]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12276,\"INSEE_Comm\":\"27591\",\"nomCom\":\"Saint-Pierre-de-Cormeilles\",\"NOM_COM\":\"SAINT-PIERRE-DE-CORMEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.36525,49.23835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12278,\"INSEE_Comm\":\"78307\",\"nomCom\":\"Hermeray\",\"NOM_COM\":\"HERMERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68849,48.65384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12312,\"INSEE_Comm\":\"27387\",\"nomCom\":\"Manthelon\",\"NOM_COM\":\"MANTHELON\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03874,48.90833]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12331,\"INSEE_Comm\":\"61384\",\"nomCom\":\"Saint-Ellier-les-Bois\",\"NOM_COM\":\"SAINT-ELLIER-LES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09849,48.52395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12341,\"INSEE_Comm\":\"14610\",\"nomCom\":\"Saint-Manvieu-Norrey\",\"NOM_COM\":\"SAINT-MANVIEU-NORREY\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":146,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5005,49.18655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12342,\"INSEE_Comm\":\"14305\",\"nomCom\":\"Gonneville-sur-Mer\",\"NOM_COM\":\"GONNEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03641,49.28954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12351,\"INSEE_Comm\":\"78478\",\"nomCom\":\"Paray-Douaville\",\"NOM_COM\":\"PARAY-DOUAVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86292,48.45997]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12359,\"INSEE_Comm\":\"80688\",\"nomCom\":\"Rue\",\"NOM_COM\":\"RUE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":99,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66501,50.2782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12412,\"INSEE_Comm\":\"27362\",\"nomCom\":\"Landep�reuse\",\"NOM_COM\":\"LANDEPEREUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62959,48.99857]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12414,\"INSEE_Comm\":\"28414\",\"nomCom\":\"Villebon\",\"NOM_COM\":\"VILLEBON\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19916,48.38951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12423,\"INSEE_Comm\":\"28018\",\"nomCom\":\"Authon-du-Perche\",\"NOM_COM\":\"AUTHON-DU-PERCHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88547,48.20173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12428,\"INSEE_Comm\":\"61120\",\"nomCom\":\"Coudehard\",\"NOM_COM\":\"COUDEHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13733,48.8492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12459,\"INSEE_Comm\":\"27626\",\"nomCom\":\"Theillement\",\"NOM_COM\":\"THEILLEMENT\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79601,49.28852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12463,\"INSEE_Comm\":\"61415\",\"nomCom\":\"Saint-L�ger-sur-Sarthe\",\"NOM_COM\":\"SAINT-LEGER-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31686,48.49501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12471,\"INSEE_Comm\":\"80354\",\"nomCom\":\"Fresnes-Tilloloy\",\"NOM_COM\":\"FRESNES-TILLOLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76036,49.98242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12503,\"INSEE_Comm\":\"27679\",\"nomCom\":\"Verneuil-sur-Avre\",\"NOM_COM\":\"VERNEUIL-SUR-AVRE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":321,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92477,48.7377]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12509,\"INSEE_Comm\":\"28407\",\"nomCom\":\"Vich�res\",\"NOM_COM\":\"VICHERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90706,48.26488]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12527,\"INSEE_Comm\":\"14353\",\"nomCom\":\"Landes-sur-Ajon\",\"NOM_COM\":\"LANDES-SUR-AJON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57188,49.0765]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12545,\"INSEE_Comm\":\"27520\",\"nomCom\":\"Saint-Beno�t-des-Ombres\",\"NOM_COM\":\"SAINT-BENOIT-DES-OMBRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61833,49.2265]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12546,\"INSEE_Comm\":\"76497\",\"nomCom\":\"Petit-Couronne\",\"NOM_COM\":\"PETIT-COURONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":429,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03432,49.38073]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12547,\"INSEE_Comm\":\"60550\",\"nomCom\":\"Rothois\",\"NOM_COM\":\"ROTHOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98979,49.59812]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12573,\"INSEE_Comm\":\"14629\",\"nomCom\":\"Saint-Martin-des-Besaces\",\"NOM_COM\":\"SAINT-MARTIN-DES-BESACES\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.84347,49.00861]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12620,\"INSEE_Comm\":\"28103\",\"nomCom\":\"Cloyes-sur-le-Loir\",\"NOM_COM\":\"CLOYES-SUR-LE-LOIR\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":101,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22151,47.99346]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12637,\"INSEE_Comm\":\"60385\",\"nomCom\":\"Marolles\",\"NOM_COM\":\"MAROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.10851,49.16367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12639,\"INSEE_Comm\":\"60196\",\"nomCom\":\"D�luge\",\"NOM_COM\":\"LEDELUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11093,49.29429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12659,\"INSEE_Comm\":\"14296\",\"nomCom\":\"Gast\",\"NOM_COM\":\"LEGAST\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.06071,48.79179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12713,\"INSEE_Comm\":\"60395\",\"nomCom\":\"M�ru\",\"NOM_COM\":\"MERU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":270,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13514,49.24563]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12723,\"INSEE_Comm\":\"61278\",\"nomCom\":\"Messei\",\"NOM_COM\":\"MESSEI\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":139,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53921,48.71406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12739,\"INSEE_Comm\":\"76567\",\"nomCom\":\"Sainte-Beuve-en-Rivi�re\",\"NOM_COM\":\"SAINTE-BEUVE-EN-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52758,49.75839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12811,\"INSEE_Comm\":\"60053\",\"nomCom\":\"Beaulieu-les-Fontaines\",\"NOM_COM\":\"BEAULIEU-LES-FONTAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91165,49.66535]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12827,\"INSEE_Comm\":\"14574\",\"nomCom\":\"Saint-D�sir\",\"NOM_COM\":\"SAINT-DESIR\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":155,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19075,49.14408]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12838,\"INSEE_Comm\":\"76221\",\"nomCom\":\"Drosay\",\"NOM_COM\":\"DROSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73733,49.79217]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12839,\"INSEE_Comm\":\"80378\",\"nomCom\":\"Ginchy\",\"NOM_COM\":\"GINCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.83621,50.02285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12848,\"INSEE_Comm\":\"76087\",\"nomCom\":\"Berville\",\"NOM_COM\":\"BERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83705,49.71251]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12865,\"INSEE_Comm\":\"80411\",\"nomCom\":\"Hamel\",\"NOM_COM\":\"LEHAMEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57278,49.89588]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12915,\"INSEE_Comm\":\"28056\",\"nomCom\":\"Boutigny-Prouais\",\"NOM_COM\":\"BOUTIGNY-PROUAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56955,48.73439]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12941,\"INSEE_Comm\":\"27632\",\"nomCom\":\"Thil\",\"NOM_COM\":\"LETHIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55523,49.30743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12960,\"INSEE_Comm\":\"80315\",\"nomCom\":\"Flers-sur-Noye\",\"NOM_COM\":\"FLERS-SUR-NOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25758,49.72933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12962,\"INSEE_Comm\":\"78384\",\"nomCom\":\"M�dan\",\"NOM_COM\":\"MEDAN\",\"Statut\":\"Communesimple\",\"idCan\":\"7816\",\"nomCan\":\"Poissy-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98758,48.95482]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12964,\"INSEE_Comm\":\"78246\",\"nomCom\":\"Fontenay-Saint-P�re\",\"NOM_COM\":\"FONTENAY-SAINT-PERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75449,49.02799]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12969,\"INSEE_Comm\":\"14746\",\"nomCom\":\"Viessoix\",\"NOM_COM\":\"VIESSOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.79018,48.83293]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12981,\"INSEE_Comm\":\"28120\",\"nomCom\":\"Crucey-Villages\",\"NOM_COM\":\"CRUCEY-VILLAGES\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10718,48.66856]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":12992,\"INSEE_Comm\":\"61422\",\"nomCom\":\"Aspres\",\"NOM_COM\":\"LESASPRES\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61019,48.67506]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13037,\"INSEE_Comm\":\"60475\",\"nomCom\":\"Ognon\",\"NOM_COM\":\"OGNON\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6445,49.23922]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13058,\"INSEE_Comm\":\"28180\",\"nomCom\":\"Gilles\",\"NOM_COM\":\"GILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51807,48.9092]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13064,\"INSEE_Comm\":\"14760\",\"nomCom\":\"Villy-Bocage\",\"NOM_COM\":\"VILLY-BOCAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64168,49.10432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13066,\"INSEE_Comm\":\"60398\",\"nomCom\":\"Mesnil-en-Thelle\",\"NOM_COM\":\"LEMESNIL-EN-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":138,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28196,49.17553]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13067,\"INSEE_Comm\":\"78073\",\"nomCom\":\"Bois-d'Arcy\",\"NOM_COM\":\"BOIS-D'ARCY\",\"Statut\":\"Communesimple\",\"idCan\":\"7836\",\"nomCan\":\"Saint-Cyr-l'�cole\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":612,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01912,48.80442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13072,\"INSEE_Comm\":\"80220\",\"nomCom\":\"Courtemanche\",\"NOM_COM\":\"COURTEMANCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54537,49.66448]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13073,\"INSEE_Comm\":\"80292\",\"nomCom\":\"�talon\",\"NOM_COM\":\"ETALON\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8488,49.76078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13074,\"INSEE_Comm\":\"80605\",\"nomCom\":\"Offoy\",\"NOM_COM\":\"OFFOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01663,49.77125]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13075,\"INSEE_Comm\":\"80573\",\"nomCom\":\"Morvillers-Saint-Saturnin\",\"NOM_COM\":\"MORVILLERS-SAINT-SATURNIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81528,49.77874]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13076,\"INSEE_Comm\":\"80724\",\"nomCom\":\"Saleux\",\"NOM_COM\":\"SALEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":157,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21888,49.86208]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13081,\"INSEE_Comm\":\"78296\",\"nomCom\":\"Guitrancourt\",\"NOM_COM\":\"GUITRANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77906,49.00757]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13105,\"INSEE_Comm\":\"14653\",\"nomCom\":\"Saint-Pierre-la-Vieille\",\"NOM_COM\":\"SAINT-PIERRE-LA-VIEILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58071,48.92042]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13119,\"INSEE_Comm\":\"61505\",\"nomCom\":\"Villedieu-l�s-Bailleul\",\"NOM_COM\":\"VILLEDIEU-LES-BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.01812,48.79975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13133,\"INSEE_Comm\":\"76603\",\"nomCom\":\"Saint-Maclou-la-Bri�re\",\"NOM_COM\":\"SAINT-MACLOU-LA-BRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46996,49.64894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13144,\"INSEE_Comm\":\"27665\",\"nomCom\":\"Trouville-la-Haule\",\"NOM_COM\":\"TROUVILLE-LA-HAULE\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58,49.42026]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13145,\"INSEE_Comm\":\"28423\",\"nomCom\":\"Yermenonville\",\"NOM_COM\":\"YERMENONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62252,48.54871]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13163,\"INSEE_Comm\":\"61430\",\"nomCom\":\"Saint-Maurice-sur-Huisne\",\"NOM_COM\":\"SAINT-MAURICE-SUR-HUISNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69875,48.42839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13166,\"INSEE_Comm\":\"61038\",\"nomCom\":\"Bell�me\",\"NOM_COM\":\"BELLEME\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":95,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56343,48.37304]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13170,\"INSEE_Comm\":\"76353\",\"nomCom\":\"H�berville\",\"NOM_COM\":\"HEBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80269,49.78314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13173,\"INSEE_Comm\":\"61331\",\"nomCom\":\"Plantis\",\"NOM_COM\":\"LEPLANTIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39701,48.60376]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13188,\"INSEE_Comm\":\"28075\",\"nomCom\":\"Chapelle-du-Noyer\",\"NOM_COM\":\"LACHAPELLE-DU-NOYER\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":72,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31784,48.04241]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13190,\"INSEE_Comm\":\"80598\",\"nomCom\":\"Nouvion\",\"NOM_COM\":\"NOUVION\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":59,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78063,50.21501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13209,\"INSEE_Comm\":\"27139\",\"nomCom\":\"Chambord\",\"NOM_COM\":\"CHAMBORD\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62098,48.88257]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13211,\"INSEE_Comm\":\"27207\",\"nomCom\":\"Drucourt\",\"NOM_COM\":\"DRUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45917,49.11652]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13218,\"INSEE_Comm\":\"78034\",\"nomCom\":\"Auteuil\",\"NOM_COM\":\"AUTEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81899,48.83949]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13219,\"INSEE_Comm\":\"95341\",\"nomCom\":\"Livilliers\",\"NOM_COM\":\"LIVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09462,49.10046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13220,\"INSEE_Comm\":\"95476\",\"nomCom\":\"Osny\",\"NOM_COM\":\"OSNY\",\"Statut\":\"Communesimple\",\"idCan\":\"9529\",\"nomCan\":\"Cergy-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":849,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06312,49.06766]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13221,\"INSEE_Comm\":\"61441\",\"nomCom\":\"Saint-Ouen-sur-Maire\",\"NOM_COM\":\"SAINT-OUEN-SUR-MAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.1814,48.70076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13223,\"INSEE_Comm\":\"61485\",\"nomCom\":\"Ticheville\",\"NOM_COM\":\"TICHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25896,48.90782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13224,\"INSEE_Comm\":\"14482\",\"nomCom\":\"Ou�zy\",\"NOM_COM\":\"OUEZY\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10397,49.08528]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13225,\"INSEE_Comm\":\"61349\",\"nomCom\":\"Ri\",\"NOM_COM\":\"RI\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13879,48.78821]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13226,\"INSEE_Comm\":\"14025\",\"nomCom\":\"Aubigny\",\"NOM_COM\":\"AUBIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.21554,48.91458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13227,\"INSEE_Comm\":\"14608\",\"nomCom\":\"Saint-Loup-de-Fribois\",\"NOM_COM\":\"SAINT-LOUP-DE-FRIBOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00994,49.10893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13228,\"INSEE_Comm\":\"61072\",\"nomCom\":\"Canapville\",\"NOM_COM\":\"CANAPVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25624,48.94841]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13248,\"INSEE_Comm\":\"78220\",\"nomCom\":\"Essarts-le-Roi\",\"NOM_COM\":\"LESESSARTS-LE-ROI\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":213,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89526,48.71602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13249,\"INSEE_Comm\":\"76129\",\"nomCom\":\"Boudeville\",\"NOM_COM\":\"BOUDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87447,49.72004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13253,\"INSEE_Comm\":\"60679\",\"nomCom\":\"Villeneuve-sous-Thury\",\"NOM_COM\":\"LAVILLENEUVE-SOUS-THURY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06116,49.16019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13274,\"INSEE_Comm\":\"14480\",\"nomCom\":\"Osmanville\",\"NOM_COM\":\"OSMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.08912,49.33408]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13275,\"INSEE_Comm\":\"76310\",\"nomCom\":\"Gouchaupre\",\"NOM_COM\":\"GOUCHAUPRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29607,49.92272]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13276,\"INSEE_Comm\":\"80819\",\"nomCom\":\"Wargnies\",\"NOM_COM\":\"WARGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25089,50.03645]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13277,\"INSEE_Comm\":\"60694\",\"nomCom\":\"Villotran\",\"NOM_COM\":\"VILLOTRAN\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01028,49.34516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13278,\"INSEE_Comm\":\"60265\",\"nomCom\":\"Froissy\",\"NOM_COM\":\"FROISSY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21478,49.56569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13279,\"INSEE_Comm\":\"60532\",\"nomCom\":\"Ressons-l'Abbaye\",\"NOM_COM\":\"RESSONS-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08615,49.29512]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13280,\"INSEE_Comm\":\"60512\",\"nomCom\":\"Pouilly\",\"NOM_COM\":\"POUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03117,49.27582]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13281,\"INSEE_Comm\":\"60367\",\"nomCom\":\"Loconville\",\"NOM_COM\":\"LOCONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9189,49.2573]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13282,\"INSEE_Comm\":\"60084\",\"nomCom\":\"Bonni�res\",\"NOM_COM\":\"BONNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95671,49.50807]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13283,\"INSEE_Comm\":\"60288\",\"nomCom\":\"Gr�m�villers\",\"NOM_COM\":\"GREMEVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90617,49.55913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13284,\"INSEE_Comm\":\"60298\",\"nomCom\":\"Hanvoile\",\"NOM_COM\":\"HANVOILE\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88114,49.50905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13285,\"INSEE_Comm\":\"60234\",\"nomCom\":\"Fitz-James\",\"NOM_COM\":\"FITZ-JAMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":109,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42942,49.39879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13286,\"INSEE_Comm\":\"60508\",\"nomCom\":\"Pontpoint\",\"NOM_COM\":\"PONTPOINT\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":161,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64848,49.3005]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13287,\"INSEE_Comm\":\"60176\",\"nomCom\":\"Cr�py-en-Valois\",\"NOM_COM\":\"CREPY-EN-VALOIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":425,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89696,49.23601]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13288,\"INSEE_Comm\":\"60551\",\"nomCom\":\"Rousseloy\",\"NOM_COM\":\"ROUSSELOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39262,49.29837]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13289,\"INSEE_Comm\":\"60393\",\"nomCom\":\"Mello\",\"NOM_COM\":\"MELLO\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":84,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37579,49.27831]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13290,\"INSEE_Comm\":\"60561\",\"nomCom\":\"Russy-B�mont\",\"NOM_COM\":\"RUSSY-BEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95643,49.24985]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13291,\"INSEE_Comm\":\"80719\",\"nomCom\":\"Sainte-Segr�e\",\"NOM_COM\":\"SAINTE-SEGREE\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91464,49.76027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13293,\"INSEE_Comm\":\"80312\",\"nomCom\":\"Fins\",\"NOM_COM\":\"FINS\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04221,50.04204]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13294,\"INSEE_Comm\":\"60445\",\"nomCom\":\"Nampcel\",\"NOM_COM\":\"NAMPCEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09067,49.49187]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13311,\"INSEE_Comm\":\"80497\",\"nomCom\":\"Machy\",\"NOM_COM\":\"MACHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8022,50.27562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13328,\"INSEE_Comm\":\"76258\",\"nomCom\":\"Fauville-en-Caux\",\"NOM_COM\":\"FAUVILLE-EN-CAUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":127,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58483,49.65709]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13341,\"INSEE_Comm\":\"27650\",\"nomCom\":\"Tournedos-Bois-Hubert\",\"NOM_COM\":\"TOURNEDOS-BOIS-HUBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98787,49.074]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13342,\"INSEE_Comm\":\"27226\",\"nomCom\":\"�tr�pagny\",\"NOM_COM\":\"ETREPAGNY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":183,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61614,49.31199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13362,\"INSEE_Comm\":\"78124\",\"nomCom\":\"Carri�res-sur-Seine\",\"NOM_COM\":\"CARRIERES-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7809\",\"nomCan\":\"Houilles\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":495,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17839,48.91193]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13363,\"INSEE_Comm\":\"28079\",\"nomCom\":\"Chapelle-Royale\",\"NOM_COM\":\"CHAPELLE-ROYALE\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0438,48.15301]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13369,\"INSEE_Comm\":\"14449\",\"nomCom\":\"Monts-en-Bessin\",\"NOM_COM\":\"MONTS-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.61001,49.12192]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13376,\"INSEE_Comm\":\"14454\",\"nomCom\":\"Mouen\",\"NOM_COM\":\"MOUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4887,49.14965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13383,\"INSEE_Comm\":\"80082\",\"nomCom\":\"Belloy-sur-Somme\",\"NOM_COM\":\"BELLOY-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13868,49.98078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13386,\"INSEE_Comm\":\"80746\",\"nomCom\":\"Talmas\",\"NOM_COM\":\"TALMAS\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34427,50.04119]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13389,\"INSEE_Comm\":\"80553\",\"nomCom\":\"Molliens-au-Bois\",\"NOM_COM\":\"MOLLIENS-AU-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38069,49.98914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13395,\"INSEE_Comm\":\"78460\",\"nomCom\":\"Oinville-sur-Montcient\",\"NOM_COM\":\"OINVILLE-SUR-MONTCIENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84612,49.02551]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13399,\"INSEE_Comm\":\"14504\",\"nomCom\":\"Pin\",\"NOM_COM\":\"LEPIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":77,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33561,49.21393]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13431,\"INSEE_Comm\":\"76595\",\"nomCom\":\"Saint-Jouin-Bruneval\",\"NOM_COM\":\"SAINT-JOUIN-BRUNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.17795,49.63897]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13453,\"INSEE_Comm\":\"14544\",\"nomCom\":\"Roucamps\",\"NOM_COM\":\"ROUCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.63142,48.98656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13471,\"INSEE_Comm\":\"61433\",\"nomCom\":\"Saint-Nicolas-des-Bois\",\"NOM_COM\":\"SAINT-NICOLAS-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02669,48.50611]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13476,\"INSEE_Comm\":\"14520\",\"nomCom\":\"Pr�-d'Auge\",\"NOM_COM\":\"LEPRE-D'AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14576,49.14965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13478,\"INSEE_Comm\":\"28343\",\"nomCom\":\"Saint-Laurent-la-G�tine\",\"NOM_COM\":\"SAINT-LAURENT-LA-GATINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54012,48.69321]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13480,\"INSEE_Comm\":\"61229\",\"nomCom\":\"Loisail\",\"NOM_COM\":\"LOISAIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58635,48.50489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13489,\"INSEE_Comm\":\"61438\",\"nomCom\":\"Saint-Ouen-de-S�cherouvre\",\"NOM_COM\":\"SAINT-OUEN-DE-SECHEROUVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49219,48.59879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13497,\"INSEE_Comm\":\"27589\",\"nomCom\":\"Saint-Pierre-de-Bailleul\",\"NOM_COM\":\"SAINT-PIERRE-DE-BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38351,49.12633]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13498,\"INSEE_Comm\":\"28080\",\"nomCom\":\"Charbonni�res\",\"NOM_COM\":\"CHARBONNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94431,48.18951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13506,\"INSEE_Comm\":\"28145\",\"nomCom\":\"Fains-la-Folie\",\"NOM_COM\":\"FAINS-LA-FOLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63014,48.21639]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13516,\"INSEE_Comm\":\"27553\",\"nomCom\":\"Saint-Julien-de-la-Li�gue\",\"NOM_COM\":\"SAINT-JULIEN-DE-LA-LIEGUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28701,49.14015]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13527,\"INSEE_Comm\":\"78285\",\"nomCom\":\"Gressey\",\"NOM_COM\":\"GRESSEY\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6034,48.83285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13530,\"INSEE_Comm\":\"14259\",\"nomCom\":\"Familly\",\"NOM_COM\":\"FAMILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34714,48.96085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13533,\"INSEE_Comm\":\"27552\",\"nomCom\":\"Saint-Jean-du-Thenney\",\"NOM_COM\":\"SAINT-JEAN-DU-THENNEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45862,49.01541]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13534,\"INSEE_Comm\":\"61151\",\"nomCom\":\"�corcei\",\"NOM_COM\":\"ECORCEI\",\"Statut\":\"Communesimple\",\"idCan\":\"6137\",\"nomCan\":\"Aigle-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57566,48.71924]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13535,\"INSEE_Comm\":\"27069\",\"nomCom\":\"Bois-Arnault\",\"NOM_COM\":\"BOIS-ARNAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74825,48.8164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13536,\"INSEE_Comm\":\"27159\",\"nomCom\":\"Cintray\",\"NOM_COM\":\"CINTRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":100,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89306,48.7868]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13538,\"INSEE_Comm\":\"14484\",\"nomCom\":\"Ouilly-du-Houley\",\"NOM_COM\":\"OUILLY-DU-HOULEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34044,49.16548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13546,\"INSEE_Comm\":\"61329\",\"nomCom\":\"Pin-la-Garenne\",\"NOM_COM\":\"LEPIN-LA-GARENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54516,48.44429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13548,\"INSEE_Comm\":\"27296\",\"nomCom\":\"Granchain\",\"NOM_COM\":\"GRANCHAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64988,49.03859]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13551,\"INSEE_Comm\":\"95488\",\"nomCom\":\"Pierrelaye\",\"NOM_COM\":\"PIERRELAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"9528\",\"nomCan\":\"Beauchamp\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":209,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16106,49.01945]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13552,\"INSEE_Comm\":\"95211\",\"nomCom\":\"Ennery\",\"NOM_COM\":\"ENNERY\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10941,49.07844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13553,\"INSEE_Comm\":\"14145\",\"nomCom\":\"Cauvicourt\",\"NOM_COM\":\"CAUVICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.25989,49.04752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13554,\"INSEE_Comm\":\"14742\",\"nomCom\":\"Vicques\",\"NOM_COM\":\"VICQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07424,48.95317]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13555,\"INSEE_Comm\":\"61270\",\"nomCom\":\"M�nil-Jean\",\"NOM_COM\":\"MENIL-JEAN\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.2228,48.73784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13556,\"INSEE_Comm\":\"14556\",\"nomCom\":\"Saint-Andr�-sur-Orne\",\"NOM_COM\":\"SAINT-ANDRE-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":105,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38827,49.12437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13573,\"INSEE_Comm\":\"14212\",\"nomCom\":\"Cully\",\"NOM_COM\":\"CULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52791,49.25046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13584,\"INSEE_Comm\":\"60448\",\"nomCom\":\"Neufchelles\",\"NOM_COM\":\"NEUFCHELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05169,49.11531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13612,\"INSEE_Comm\":\"14209\",\"nomCom\":\"Crouay\",\"NOM_COM\":\"CROUAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81706,49.26914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13614,\"INSEE_Comm\":\"14124\",\"nomCom\":\"Cambe\",\"NOM_COM\":\"LACAMBE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.0096,49.34472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13615,\"INSEE_Comm\":\"76308\",\"nomCom\":\"Gonneville-sur-Scie\",\"NOM_COM\":\"GONNEVILLE-SUR-SCIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08671,49.75691]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13616,\"INSEE_Comm\":\"76144\",\"nomCom\":\"Bretteville-Saint-Laurent\",\"NOM_COM\":\"BRETTEVILLE-SAINT-LAURENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86926,49.76622]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13617,\"INSEE_Comm\":\"76735\",\"nomCom\":\"Veules-les-Roses\",\"NOM_COM\":\"VEULES-LES-ROSES\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78609,49.86689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13618,\"INSEE_Comm\":\"27453\",\"nomCom\":\"Perriers-sur-Andelle\",\"NOM_COM\":\"PERRIERS-SUR-ANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":69,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3633,49.40844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13619,\"INSEE_Comm\":\"76498\",\"nomCom\":\"Petit-Quevilly\",\"NOM_COM\":\"LEPETIT-QUEVILLY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7667\",\"nomCan\":\"Petit-Quevilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":959,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06051,49.42381]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13620,\"INSEE_Comm\":\"76025\",\"nomCom\":\"Argueil\",\"NOM_COM\":\"ARGUEIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52572,49.54593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13621,\"INSEE_Comm\":\"80509\",\"nomCom\":\"March�lepot\",\"NOM_COM\":\"MARCHELEPOT\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86664,49.83104]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13622,\"INSEE_Comm\":\"80342\",\"nomCom\":\"Framerville-Rainecourt\",\"NOM_COM\":\"FRAMERVILLE-RAINECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72,49.86331]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13623,\"INSEE_Comm\":\"80401\",\"nomCom\":\"Guillemont\",\"NOM_COM\":\"GUILLEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82382,50.01105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13624,\"INSEE_Comm\":\"60110\",\"nomCom\":\"Broquiers\",\"NOM_COM\":\"BROQUIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83561,49.66266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13625,\"INSEE_Comm\":\"60433\",\"nomCom\":\"Mortefontaine-en-Thelle\",\"NOM_COM\":\"MORTEFONTAINE-EN-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1891,49.26512]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13626,\"INSEE_Comm\":\"60169\",\"nomCom\":\"Courcelles-l�s-Gisors\",\"NOM_COM\":\"COURCELLES-LES-GISORS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73615,49.25943]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13627,\"INSEE_Comm\":\"60164\",\"nomCom\":\"Coudray-Saint-Germer\",\"NOM_COM\":\"LECOUDRAY-SAINT-GERMER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83222,49.40065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13628,\"INSEE_Comm\":\"60135\",\"nomCom\":\"Cauvigny\",\"NOM_COM\":\"CAUVIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2397,49.30257]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13629,\"INSEE_Comm\":\"60569\",\"nomCom\":\"Saint-Cr�pin-aux-Bois\",\"NOM_COM\":\"SAINT-CREPIN-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98488,49.44479]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13630,\"INSEE_Comm\":\"60544\",\"nomCom\":\"Rocquencourt\",\"NOM_COM\":\"ROCQUENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4101,49.64824]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13631,\"INSEE_Comm\":\"60643\",\"nomCom\":\"Tricot\",\"NOM_COM\":\"TRICOT\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58462,49.56314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13632,\"INSEE_Comm\":\"60351\",\"nomCom\":\"Lataule\",\"NOM_COM\":\"LATAULE\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67459,49.53663]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13633,\"INSEE_Comm\":\"60067\",\"nomCom\":\"B�thisy-Saint-Martin\",\"NOM_COM\":\"BETHISY-SAINT-MARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81206,49.28761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13634,\"INSEE_Comm\":\"80514\",\"nomCom\":\"Marieux\",\"NOM_COM\":\"MARIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44635,50.10082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13635,\"INSEE_Comm\":\"60436\",\"nomCom\":\"Mory-Montcrux\",\"NOM_COM\":\"MORY-MONTCRUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39742,49.59442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13636,\"INSEE_Comm\":\"80362\",\"nomCom\":\"Frettemeule\",\"NOM_COM\":\"FRETTEMEULE\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63939,49.99959]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13652,\"INSEE_Comm\":\"80243\",\"nomCom\":\"Domesmont\",\"NOM_COM\":\"DOMESMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14394,50.12018]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13671,\"INSEE_Comm\":\"76212\",\"nomCom\":\"Darn�tal\",\"NOM_COM\":\"DARNETAL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":334,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15582,49.4444]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13679,\"INSEE_Comm\":\"78567\",\"nomCom\":\"Saint-Martin-la-Garenne\",\"NOM_COM\":\"SAINT-MARTIN-LA-GARENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6773,49.03596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13680,\"INSEE_Comm\":\"78202\",\"nomCom\":\"Drocourt\",\"NOM_COM\":\"DROCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76822,49.05196]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13687,\"INSEE_Comm\":\"27216\",\"nomCom\":\"�malleville\",\"NOM_COM\":\"EMALLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15701,49.10167]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13698,\"INSEE_Comm\":\"27647\",\"nomCom\":\"Tosny\",\"NOM_COM\":\"TOSNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36348,49.22339]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13699,\"INSEE_Comm\":\"27676\",\"nomCom\":\"Venables\",\"NOM_COM\":\"VENABLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29594,49.20122]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13710,\"INSEE_Comm\":\"28342\",\"nomCom\":\"Saint-Jean-Pierre-Fixte\",\"NOM_COM\":\"SAINT-JEAN-PIERRE-FIXTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83018,48.29247]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13731,\"INSEE_Comm\":\"95055\",\"nomCom\":\"Bellefontaine\",\"NOM_COM\":\"BELLEFONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46956,49.09254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13734,\"INSEE_Comm\":\"78125\",\"nomCom\":\"Celle-les-Bordes\",\"NOM_COM\":\"LACELLE-LES-BORDES\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94489,48.64164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13735,\"INSEE_Comm\":\"78071\",\"nomCom\":\"Boinville-le-Gaillard\",\"NOM_COM\":\"BOINVILLE-LE-GAILLARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87115,48.4958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13736,\"INSEE_Comm\":\"78640\",\"nomCom\":\"V�lizy-Villacoublay\",\"NOM_COM\":\"VELIZY-VILLACOUBLAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7837\",\"nomCan\":\"V�lizy-Villacoublay\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":986,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19708,48.78399]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13743,\"INSEE_Comm\":\"80658\",\"nomCom\":\"Quivi�res\",\"NOM_COM\":\"QUIVIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.03242,49.82384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13749,\"INSEE_Comm\":\"80472\",\"nomCom\":\"Lesboeufs\",\"NOM_COM\":\"LESBOEUFS\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85744,50.04415]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13750,\"INSEE_Comm\":\"80467\",\"nomCom\":\"Laucourt\",\"NOM_COM\":\"LAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76264,49.6716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13751,\"INSEE_Comm\":\"80017\",\"nomCom\":\"Allaines\",\"NOM_COM\":\"ALLAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.93745,49.96326]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13752,\"INSEE_Comm\":\"80361\",\"nomCom\":\"Frettecuisse\",\"NOM_COM\":\"FRETTECUISSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81015,49.92344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13754,\"INSEE_Comm\":\"80444\",\"nomCom\":\"Huchenneville\",\"NOM_COM\":\"HUCHENNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80273,50.04825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13755,\"INSEE_Comm\":\"80273\",\"nomCom\":\"�plessier\",\"NOM_COM\":\"EPLESSIER\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94047,49.78433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13756,\"INSEE_Comm\":\"80303\",\"nomCom\":\"Favi�res\",\"NOM_COM\":\"FAVIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66862,50.23472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13785,\"INSEE_Comm\":\"61094\",\"nomCom\":\"Chapelle-au-Moine\",\"NOM_COM\":\"LACHAPELLE-AU-MOINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.59204,48.70301]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13799,\"INSEE_Comm\":\"14457\",\"nomCom\":\"Moutiers-en-Auge\",\"NOM_COM\":\"LESMOUTIERS-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00825,48.89842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13800,\"INSEE_Comm\":\"76200\",\"nomCom\":\"Critot\",\"NOM_COM\":\"CRITOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24429,49.61504]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13804,\"INSEE_Comm\":\"27243\",\"nomCom\":\"Fiquefleur-�quainville\",\"NOM_COM\":\"FIQUEFLEUR-EQUAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31687,49.3986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13855,\"INSEE_Comm\":\"27446\",\"nomCom\":\"Ormes\",\"NOM_COM\":\"ORMES\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95601,49.05635]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13873,\"INSEE_Comm\":\"28123\",\"nomCom\":\"Dampierre-sous-Brou\",\"NOM_COM\":\"DAMPIERRE-SOUS-BROU\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.109,48.22445]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13888,\"INSEE_Comm\":\"78344\",\"nomCom\":\"Lommoye\",\"NOM_COM\":\"LOMMOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51645,48.9974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13899,\"INSEE_Comm\":\"27630\",\"nomCom\":\"Thibouville\",\"NOM_COM\":\"THIBOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80355,49.14121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13901,\"INSEE_Comm\":\"27291\",\"nomCom\":\"Gournay-le-Gu�rin\",\"NOM_COM\":\"GOURNAY-LE-GUERIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76932,48.71626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13904,\"INSEE_Comm\":\"61279\",\"nomCom\":\"Mieuxc�\",\"NOM_COM\":\"MIEUXCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.00204,48.41155]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13909,\"INSEE_Comm\":\"78358\",\"nomCom\":\"Maisons-Laffitte\",\"NOM_COM\":\"MAISONS-LAFFITTE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7811\",\"nomCan\":\"Maisons-Laffitte\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":450,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15161,48.95234]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13910,\"INSEE_Comm\":\"61111\",\"nomCom\":\"Colombiers\",\"NOM_COM\":\"COLOMBIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05097,48.47575]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13912,\"INSEE_Comm\":\"14638\",\"nomCom\":\"Saint-Ouen-le-Houx\",\"NOM_COM\":\"SAINT-OUEN-LE-HOUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19285,48.98154]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13913,\"INSEE_Comm\":\"27004\",\"nomCom\":\"Aigleville\",\"NOM_COM\":\"AIGLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42581,49.00598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13938,\"INSEE_Comm\":\"14214\",\"nomCom\":\"Cussy\",\"NOM_COM\":\"CUSSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76215,49.28374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13970,\"INSEE_Comm\":\"14091\",\"nomCom\":\"Bourgeauville\",\"NOM_COM\":\"BOURGEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05839,49.26815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13971,\"INSEE_Comm\":\"76339\",\"nomCom\":\"Hanouard\",\"NOM_COM\":\"LEHANOUARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65491,49.72275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13972,\"INSEE_Comm\":\"76756\",\"nomCom\":\"Yquebeuf\",\"NOM_COM\":\"YQUEBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25983,49.59342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13973,\"INSEE_Comm\":\"76728\",\"nomCom\":\"Vaupali�re\",\"NOM_COM\":\"LAVAUPALIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99417,49.48174]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13974,\"INSEE_Comm\":\"76502\",\"nomCom\":\"Pierreval\",\"NOM_COM\":\"PIERREVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25377,49.54034]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13975,\"INSEE_Comm\":\"76395\",\"nomCom\":\"Longueil\",\"NOM_COM\":\"LONGUEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94774,49.8832]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13976,\"INSEE_Comm\":\"80053\",\"nomCom\":\"Bal�tre\",\"NOM_COM\":\"BALATRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86505,49.7113]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13977,\"INSEE_Comm\":\"80409\",\"nomCom\":\"Hallu\",\"NOM_COM\":\"HALLU\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78814,49.79212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13978,\"INSEE_Comm\":\"60678\",\"nomCom\":\"Villeneuve-les-Sablons\",\"NOM_COM\":\"VILLENEUVE-LES-SABLONS\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07386,49.23334]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13979,\"INSEE_Comm\":\"60244\",\"nomCom\":\"Fontenay-Torcy\",\"NOM_COM\":\"FONTENAY-TORCY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76602,49.5683]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13980,\"INSEE_Comm\":\"60134\",\"nomCom\":\"Cauffry\",\"NOM_COM\":\"CAUFFRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":89,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43032,49.3134]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13981,\"INSEE_Comm\":\"60618\",\"nomCom\":\"S�ry-Magneval\",\"NOM_COM\":\"SERY-MAGNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86038,49.25846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":13998,\"INSEE_Comm\":\"80122\",\"nomCom\":\"Bouquemaison\",\"NOM_COM\":\"BOUQUEMAISON\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33916,50.21562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14013,\"INSEE_Comm\":\"76712\",\"nomCom\":\"Trinit�-du-Mont\",\"NOM_COM\":\"LATRINITE-DU-MONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5579,49.54558]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14014,\"INSEE_Comm\":\"76227\",\"nomCom\":\"Ectot-l'Auber\",\"NOM_COM\":\"ECTOT-L'AUBER\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92998,49.65472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14015,\"INSEE_Comm\":\"76047\",\"nomCom\":\"Auzouville-sur-Sa�ne\",\"NOM_COM\":\"AUZOUVILLE-SUR-SAANE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93184,49.74196]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14016,\"INSEE_Comm\":\"76655\",\"nomCom\":\"Saint-Valery-en-Caux\",\"NOM_COM\":\"SAINT-VALERY-EN-CAUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":114,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70701,49.85973]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14017,\"INSEE_Comm\":\"76685\",\"nomCom\":\"Th�rouldeville\",\"NOM_COM\":\"THEROULDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52324,49.75646]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14031,\"INSEE_Comm\":\"27260\",\"nomCom\":\"Foulbec\",\"NOM_COM\":\"FOULBEC\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":72,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42223,49.39406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14032,\"INSEE_Comm\":\"27102\",\"nomCom\":\"Bouquetot\",\"NOM_COM\":\"BOUQUETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":61,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7704,49.36105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14033,\"INSEE_Comm\":\"27529\",\"nomCom\":\"Saint-Cyr-la-Campagne\",\"NOM_COM\":\"SAINT-CYR-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01945,49.25043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14036,\"INSEE_Comm\":\"27449\",\"nomCom\":\"Panilleuse\",\"NOM_COM\":\"PANILLEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5013,49.15097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14037,\"INSEE_Comm\":\"27373\",\"nomCom\":\"Lorleau\",\"NOM_COM\":\"LORLEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50487,49.42144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14045,\"INSEE_Comm\":\"76137\",\"nomCom\":\"Bracquemont\",\"NOM_COM\":\"BRACQUEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":56,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14135,49.93972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14053,\"INSEE_Comm\":\"28052\",\"nomCom\":\"Bouglainval\",\"NOM_COM\":\"BOUGLAINVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51012,48.56064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14061,\"INSEE_Comm\":\"60255\",\"nomCom\":\"Fr�niches\",\"NOM_COM\":\"FRENICHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00464,49.67432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14073,\"INSEE_Comm\":\"78550\",\"nomCom\":\"Saint-Germain-de-la-Grange\",\"NOM_COM\":\"SAINT-GERMAIN-DE-LA-GRANGE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90236,48.83307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14074,\"INSEE_Comm\":\"78688\",\"nomCom\":\"Voisins-le-Bretonneux\",\"NOM_COM\":\"VOISINS-LE-BRETONNEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":182,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04851,48.75868]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14080,\"INSEE_Comm\":\"80321\",\"nomCom\":\"Folleville\",\"NOM_COM\":\"FOLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35505,49.67769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14082,\"INSEE_Comm\":\"80420\",\"nomCom\":\"Harponville\",\"NOM_COM\":\"HARPONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50066,50.03631]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14083,\"INSEE_Comm\":\"80169\",\"nomCom\":\"Cannessi�res\",\"NOM_COM\":\"CANNESSIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76567,49.93572]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14084,\"INSEE_Comm\":\"80417\",\"nomCom\":\"Harbonni�res\",\"NOM_COM\":\"HARBONNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6699,49.85046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14085,\"INSEE_Comm\":\"80319\",\"nomCom\":\"Fluy\",\"NOM_COM\":\"FLUY\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08596,49.85968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14086,\"INSEE_Comm\":\"80516\",\"nomCom\":\"Marquaix\",\"NOM_COM\":\"MARQUAIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07463,49.94745]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14087,\"INSEE_Comm\":\"14127\",\"nomCom\":\"Campagnolles\",\"NOM_COM\":\"CAMPAGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.93528,48.8893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14140,\"INSEE_Comm\":\"28379\",\"nomCom\":\"Soulaires\",\"NOM_COM\":\"SOULAIRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58913,48.51768]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14150,\"INSEE_Comm\":\"80020\",\"nomCom\":\"Allonville\",\"NOM_COM\":\"ALLONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8045\",\"nomCan\":\"Amiens8e(Nord)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":87,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36777,49.93794]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14153,\"INSEE_Comm\":\"27283\",\"nomCom\":\"Gisay-la-Coudre\",\"NOM_COM\":\"GISAY-LA-COUDRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61442,48.94595]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14154,\"INSEE_Comm\":\"28062\",\"nomCom\":\"Brou�\",\"NOM_COM\":\"BROUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52436,48.7524]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14158,\"INSEE_Comm\":\"14651\",\"nomCom\":\"Saint-Pierre-du-Jonquet\",\"NOM_COM\":\"SAINT-PIERRE-DU-JONQUET\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13955,49.16597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14160,\"INSEE_Comm\":\"76241\",\"nomCom\":\"Ermenouville\",\"NOM_COM\":\"ERMENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78383,49.80401]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14167,\"INSEE_Comm\":\"61082\",\"nomCom\":\"Chalange\",\"NOM_COM\":\"LECHALANGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3122,48.59212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14180,\"INSEE_Comm\":\"27193\",\"nomCom\":\"Croth\",\"NOM_COM\":\"CROTH\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36816,48.85074]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14182,\"INSEE_Comm\":\"14699\",\"nomCom\":\"Touques\",\"NOM_COM\":\"TOUQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":601,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11264,49.35357]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14184,\"INSEE_Comm\":\"27132\",\"nomCom\":\"Caug�\",\"NOM_COM\":\"CAUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"2738\",\"nomCan\":\"�vreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04289,49.02499]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14189,\"INSEE_Comm\":\"78364\",\"nomCom\":\"Marcq\",\"NOM_COM\":\"MARCQ\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82382,48.86423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14201,\"INSEE_Comm\":\"27331\",\"nomCom\":\"Heub�court-Haricourt\",\"NOM_COM\":\"HEUBECOURT-HARICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5646,49.13013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14204,\"INSEE_Comm\":\"78188\",\"nomCom\":\"Cravent\",\"NOM_COM\":\"CRAVENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4846,48.98957]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14206,\"INSEE_Comm\":\"27032\",\"nomCom\":\"Avrilly\",\"NOM_COM\":\"AVRILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14608,48.92825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14211,\"INSEE_Comm\":\"27303\",\"nomCom\":\"Guernanville\",\"NOM_COM\":\"GUERNANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84216,48.88901]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14212,\"INSEE_Comm\":\"61135\",\"nomCom\":\"Couterne\",\"NOM_COM\":\"COUTERNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39837,48.5283]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14221,\"INSEE_Comm\":\"14381\",\"nomCom\":\"Louvagny\",\"NOM_COM\":\"LOUVAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04656,48.95014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14223,\"INSEE_Comm\":\"14134\",\"nomCom\":\"Canteloup\",\"NOM_COM\":\"CANTELOUP\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12126,49.13663]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14227,\"INSEE_Comm\":\"61139\",\"nomCom\":\"Crouttes\",\"NOM_COM\":\"CROUTTES\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13654,48.92199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14228,\"INSEE_Comm\":\"61413\",\"nomCom\":\"Saint-Lambert-sur-Dive\",\"NOM_COM\":\"SAINT-LAMBERT-SUR-DIVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0906,48.82963]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14229,\"INSEE_Comm\":\"61364\",\"nomCom\":\"Saint-Aubert-sur-Orne\",\"NOM_COM\":\"SAINT-AUBERT-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32283,48.78948]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14230,\"INSEE_Comm\":\"61124\",\"nomCom\":\"Coulonche\",\"NOM_COM\":\"LACOULONCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.46664,48.63757]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14231,\"INSEE_Comm\":\"61492\",\"nomCom\":\"Tr�mont\",\"NOM_COM\":\"TREMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27358,48.59926]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14255,\"INSEE_Comm\":\"14250\",\"nomCom\":\"Esquay-sur-Seulles\",\"NOM_COM\":\"ESQUAY-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62247,49.27171]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14256,\"INSEE_Comm\":\"28313\",\"nomCom\":\"R�clainville\",\"NOM_COM\":\"RECLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73963,48.33753]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14257,\"INSEE_Comm\":\"78289\",\"nomCom\":\"Grosrouvre\",\"NOM_COM\":\"GROSROUVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75723,48.78033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14258,\"INSEE_Comm\":\"60087\",\"nomCom\":\"Borest\",\"NOM_COM\":\"BOREST\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67193,49.18852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14273,\"INSEE_Comm\":\"14488\",\"nomCom\":\"Ouistreham\",\"NOM_COM\":\"OUISTREHAM\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":272,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.25772,49.27453]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14274,\"INSEE_Comm\":\"14035\",\"nomCom\":\"Balleroy\",\"NOM_COM\":\"BALLEROY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":79,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83997,49.18013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14275,\"INSEE_Comm\":\"76352\",\"nomCom\":\"Haye\",\"NOM_COM\":\"LAHAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44725,49.46086]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14276,\"INSEE_Comm\":\"80647\",\"nomCom\":\"Puzeaux\",\"NOM_COM\":\"PUZEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82666,49.7986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14277,\"INSEE_Comm\":\"60251\",\"nomCom\":\"Fouquerolles\",\"NOM_COM\":\"FOUQUEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21419,49.45905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14278,\"INSEE_Comm\":\"60339\",\"nomCom\":\"Lafraye\",\"NOM_COM\":\"LAFRAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21193,49.49419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14279,\"INSEE_Comm\":\"60026\",\"nomCom\":\"Auchy-la-Montagne\",\"NOM_COM\":\"AUCHY-LA-MONTAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11948,49.57396]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14280,\"INSEE_Comm\":\"60239\",\"nomCom\":\"Fleury\",\"NOM_COM\":\"FLEURY\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96702,49.24579]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14281,\"INSEE_Comm\":\"60122\",\"nomCom\":\"Campeaux\",\"NOM_COM\":\"CAMPEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75494,49.61403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14282,\"INSEE_Comm\":\"80268\",\"nomCom\":\"�pagne-�pagnette\",\"NOM_COM\":\"EPAGNE-EPAGNETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8002\",\"nomCan\":\"Abbeville-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86764,50.0773]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14283,\"INSEE_Comm\":\"80830\",\"nomCom\":\"Yaucourt-Bussus\",\"NOM_COM\":\"YAUCOURT-BUSSUS\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97674,50.10603]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14284,\"INSEE_Comm\":\"60522\",\"nomCom\":\"Quinquempoix\",\"NOM_COM\":\"QUINQUEMPOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41867,49.54729]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14285,\"INSEE_Comm\":\"60099\",\"nomCom\":\"Braisnes\",\"NOM_COM\":\"BRAISNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77403,49.4761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14286,\"INSEE_Comm\":\"60368\",\"nomCom\":\"Longueil-Annel\",\"NOM_COM\":\"LONGUEIL-ANNEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":138,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85424,49.46672]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14287,\"INSEE_Comm\":\"60273\",\"nomCom\":\"Giraumont\",\"NOM_COM\":\"GIRAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82477,49.4737]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14288,\"INSEE_Comm\":\"60520\",\"nomCom\":\"Quesnel-Aubry\",\"NOM_COM\":\"LEQUESNEL-AUBRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31482,49.50964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14293,\"INSEE_Comm\":\"80088\",\"nomCom\":\"Bernes\",\"NOM_COM\":\"BERNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.10187,49.90872]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14316,\"INSEE_Comm\":\"76629\",\"nomCom\":\"Saint-Ouen-le-Mauger\",\"NOM_COM\":\"SAINT-OUEN-LE-MAUGER\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95902,49.76008]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14324,\"INSEE_Comm\":\"27082\",\"nomCom\":\"Bonneville-sur-Iton\",\"NOM_COM\":\"LABONNEVILLE-SUR-ITON\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0354,48.99752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14325,\"INSEE_Comm\":\"27281\",\"nomCom\":\"Gaudreville-la-Rivi�re\",\"NOM_COM\":\"GAUDREVILLE-LA-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02989,48.96016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14326,\"INSEE_Comm\":\"27113\",\"nomCom\":\"Br�tigny\",\"NOM_COM\":\"BRETIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66253,49.21496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14327,\"INSEE_Comm\":\"27348\",\"nomCom\":\"Igoville\",\"NOM_COM\":\"IGOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":113,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15098,49.32273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14342,\"INSEE_Comm\":\"27092\",\"nomCom\":\"Bosgu�rard-de-Marcouville\",\"NOM_COM\":\"BOSGUERARD-DE-MARCOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84402,49.26751]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14344,\"INSEE_Comm\":\"27066\",\"nomCom\":\"B�zu-la-For�t\",\"NOM_COM\":\"BEZU-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6244,49.39586]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14345,\"INSEE_Comm\":\"27417\",\"nomCom\":\"Morgny\",\"NOM_COM\":\"MORGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57827,49.37761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14356,\"INSEE_Comm\":\"14162\",\"nomCom\":\"Cl�cy\",\"NOM_COM\":\"CLECY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.49358,48.90255]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14363,\"INSEE_Comm\":\"78439\",\"nomCom\":\"Mulcent\",\"NOM_COM\":\"MULCENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6521,48.87841]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14364,\"INSEE_Comm\":\"78327\",\"nomCom\":\"Juziers\",\"NOM_COM\":\"JUZIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":136,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84037,48.99992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14365,\"INSEE_Comm\":\"28375\",\"nomCom\":\"Serville\",\"NOM_COM\":\"SERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48741,48.76952]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14366,\"INSEE_Comm\":\"78470\",\"nomCom\":\"Orphin\",\"NOM_COM\":\"ORPHIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.783,48.57606]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14368,\"INSEE_Comm\":\"80523\",\"nomCom\":\"M�aulte\",\"NOM_COM\":\"MEAULTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66807,49.97484]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14370,\"INSEE_Comm\":\"14122\",\"nomCom\":\"Caine\",\"NOM_COM\":\"LACAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.51577,49.03524]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14389,\"INSEE_Comm\":\"78208\",\"nomCom\":\"�lancourt\",\"NOM_COM\":\"ELANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7834\",\"nomCan\":\"Maurepas\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":235,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9605,48.77816]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14390,\"INSEE_Comm\":\"78189\",\"nomCom\":\"Crespi�res\",\"NOM_COM\":\"CRESPIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7817\",\"nomCan\":\"Poissy-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92112,48.8822]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14393,\"INSEE_Comm\":\"80452\",\"nomCom\":\"Jumel\",\"NOM_COM\":\"JUMEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32285,49.76239]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14395,\"INSEE_Comm\":\"80395\",\"nomCom\":\"Guerbigny\",\"NOM_COM\":\"GUERBIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66525,49.69781]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14397,\"INSEE_Comm\":\"80721\",\"nomCom\":\"Saint-Valery-sur-Somme\",\"NOM_COM\":\"SAINT-VALERY-SUR-SOMME\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":153,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62285,50.176]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14399,\"INSEE_Comm\":\"80221\",\"nomCom\":\"Cramont\",\"NOM_COM\":\"CRAMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04894,50.153]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14407,\"INSEE_Comm\":\"27482\",\"nomCom\":\"Pyle\",\"NOM_COM\":\"LAPYLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89716,49.19987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14416,\"INSEE_Comm\":\"61078\",\"nomCom\":\"Cerisy-Belle-�toile\",\"NOM_COM\":\"CERISY-BELLE-ETOILE\",\"Statut\":\"Communesimple\",\"idCan\":\"6115\",\"nomCan\":\"Flers-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62363,48.78331]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14446,\"INSEE_Comm\":\"27606\",\"nomCom\":\"Saint-Symphorien\",\"NOM_COM\":\"SAINT-SYMPHORIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45584,49.31039]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14455,\"INSEE_Comm\":\"14361\",\"nomCom\":\"L�nault\",\"NOM_COM\":\"LENAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62294,48.9297]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14461,\"INSEE_Comm\":\"28033\",\"nomCom\":\"Belhomert-Gu�houville\",\"NOM_COM\":\"BELHOMERT-GUEHOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05051,48.50548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14462,\"INSEE_Comm\":\"14366\",\"nomCom\":\"Lisieux\",\"NOM_COM\":\"LISIEUX\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"1499\",\"nomCan\":\"Lisieux\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":826,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23843,49.14662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14468,\"INSEE_Comm\":\"28014\",\"nomCom\":\"Aunay-sous-Cr�cy\",\"NOM_COM\":\"AUNAY-SOUS-CRECY\",\"Statut\":\"Communesimple\",\"idCan\":\"2828\",\"nomCan\":\"Dreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30388,48.65758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14489,\"INSEE_Comm\":\"61450\",\"nomCom\":\"Saint-Quentin-de-Blavou\",\"NOM_COM\":\"SAINT-QUENTIN-DE-BLAVOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41873,48.47923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14504,\"INSEE_Comm\":\"14591\",\"nomCom\":\"Sainte-Honorine-des-Pertes\",\"NOM_COM\":\"SAINTE-HONORINE-DES-PERTES\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81043,49.34671]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14508,\"INSEE_Comm\":\"27419\",\"nomCom\":\"Mouettes\",\"NOM_COM\":\"MOUETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36834,48.88865]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14521,\"INSEE_Comm\":\"76240\",\"nomCom\":\"�preville\",\"NOM_COM\":\"EPREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.36787,49.70516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14536,\"INSEE_Comm\":\"78559\",\"nomCom\":\"Saint-Illiers-le-Bois\",\"NOM_COM\":\"SAINT-ILLIERS-LE-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51187,48.96509]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14539,\"INSEE_Comm\":\"61161\",\"nomCom\":\"Fel\",\"NOM_COM\":\"FEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11194,48.79331]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14540,\"INSEE_Comm\":\"28099\",\"nomCom\":\"Chuisnes\",\"NOM_COM\":\"CHUISNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":92,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1889,48.43701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14548,\"INSEE_Comm\":\"27156\",\"nomCom\":\"Ch�ronvilliers\",\"NOM_COM\":\"CHERONVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76079,48.79221]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14553,\"INSEE_Comm\":\"61141\",\"nomCom\":\"Cuissai\",\"NOM_COM\":\"CUISSAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00264,48.47239]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14554,\"INSEE_Comm\":\"14402\",\"nomCom\":\"Marais-la-Chapelle\",\"NOM_COM\":\"LEMARAIS-LA-CHAPELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0225,48.88202]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14555,\"INSEE_Comm\":\"14696\",\"nomCom\":\"Tortisambert\",\"NOM_COM\":\"TORTISAMBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11494,48.96419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14556,\"INSEE_Comm\":\"14013\",\"nomCom\":\"Angoville\",\"NOM_COM\":\"ANGOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37343,48.94378]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14590,\"INSEE_Comm\":\"76145\",\"nomCom\":\"Brunville\",\"NOM_COM\":\"BRUNVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2658,49.96603]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14602,\"INSEE_Comm\":\"14131\",\"nomCom\":\"Canapville\",\"NOM_COM\":\"CANAPVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13607,49.31709]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14603,\"INSEE_Comm\":\"76538\",\"nomCom\":\"Rosay\",\"NOM_COM\":\"ROSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25571,49.69678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14604,\"INSEE_Comm\":\"76520\",\"nomCom\":\"R�alcamp\",\"NOM_COM\":\"REALCAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62067,49.86042]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14605,\"INSEE_Comm\":\"76108\",\"nomCom\":\"Bois-Guillaume-Bihorel\",\"NOM_COM\":\"BOIS-GUILLAUME\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7660\",\"nomCan\":\"Bois-Guillaume-Bihorel\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":589,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11834,49.47441]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14606,\"INSEE_Comm\":\"76372\",\"nomCom\":\"Illois\",\"NOM_COM\":\"ILLOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64587,49.7454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14607,\"INSEE_Comm\":\"60638\",\"nomCom\":\"Thury-sous-Clermont\",\"NOM_COM\":\"THURY-SOUS-CLERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32861,49.35851]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14608,\"INSEE_Comm\":\"60147\",\"nomCom\":\"Chevincourt\",\"NOM_COM\":\"CHEVINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85123,49.51676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14609,\"INSEE_Comm\":\"60595\",\"nomCom\":\"Saint-Remy-en-l'Eau\",\"NOM_COM\":\"SAINT-REMY-EN-L'EAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42415,49.4703]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14610,\"INSEE_Comm\":\"80493\",\"nomCom\":\"Louvencourt\",\"NOM_COM\":\"LOUVENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50525,50.09203]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14611,\"INSEE_Comm\":\"27445\",\"nomCom\":\"Noyers\",\"NOM_COM\":\"NOYERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67353,49.24582]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14614,\"INSEE_Comm\":\"60025\",\"nomCom\":\"Attichy\",\"NOM_COM\":\"ATTICHY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":85,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04405,49.42573]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14626,\"INSEE_Comm\":\"80249\",\"nomCom\":\"Domqueur\",\"NOM_COM\":\"DOMQUEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05151,50.11356]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14650,\"INSEE_Comm\":\"76615\",\"nomCom\":\"Saint-Martin-du-Bec\",\"NOM_COM\":\"SAINT-MARTIN-DU-BEC\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20228,49.60067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14651,\"INSEE_Comm\":\"76299\",\"nomCom\":\"Gerponville\",\"NOM_COM\":\"GERPONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56381,49.7478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14652,\"INSEE_Comm\":\"76370\",\"nomCom\":\"Hugleville-en-Caux\",\"NOM_COM\":\"HUGLEVILLE-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99012,49.62366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14658,\"INSEE_Comm\":\"28115\",\"nomCom\":\"Courtalain\",\"NOM_COM\":\"COURTALAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13674,48.08388]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14659,\"INSEE_Comm\":\"28357\",\"nomCom\":\"Saint-Piat\",\"NOM_COM\":\"SAINT-PIAT\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57938,48.54778]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14660,\"INSEE_Comm\":\"28317\",\"nomCom\":\"Roinville\",\"NOM_COM\":\"ROINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75674,48.4427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14666,\"INSEE_Comm\":\"27503\",\"nomCom\":\"Sacq\",\"NOM_COM\":\"LESACQ\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06719,48.89266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14667,\"INSEE_Comm\":\"27290\",\"nomCom\":\"Goupilli�res\",\"NOM_COM\":\"GOUPILLIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":59,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76596,49.12183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14668,\"INSEE_Comm\":\"60095\",\"nomCom\":\"Boury-en-Vexin\",\"NOM_COM\":\"BOURY-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73713,49.24244]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14679,\"INSEE_Comm\":\"27317\",\"nomCom\":\"Haye-Aubr�e\",\"NOM_COM\":\"LAHAYE-AUBREE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69335,49.39415]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14694,\"INSEE_Comm\":\"28057\",\"nomCom\":\"Bouville\",\"NOM_COM\":\"BOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.37826,48.26183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14706,\"INSEE_Comm\":\"76080\",\"nomCom\":\"Bermonville\",\"NOM_COM\":\"BERMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63922,49.64147]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14708,\"INSEE_Comm\":\"78565\",\"nomCom\":\"Saint-Martin-des-Champs\",\"NOM_COM\":\"SAINT-MARTIN-DES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71917,48.87789]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14709,\"INSEE_Comm\":\"28380\",\"nomCom\":\"Sours\",\"NOM_COM\":\"SOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"2825\",\"nomCan\":\"Chartres-Sud-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":94,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59645,48.4135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14710,\"INSEE_Comm\":\"28053\",\"nomCom\":\"Boullay-les-Deux-�glises\",\"NOM_COM\":\"LEBOULLAY-LES-DEUX-EGLISES\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32665,48.63213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14721,\"INSEE_Comm\":\"95394\",\"nomCom\":\"M�ry-sur-Oise\",\"NOM_COM\":\"MERY-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9521\",\"nomCan\":\"Saint-Ouen-l'Aum�ne\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":234,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17421,49.05474]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14722,\"INSEE_Comm\":\"95019\",\"nomCom\":\"Arnouville\",\"NOM_COM\":\"ARNOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9535\",\"nomCan\":\"Villiers-le-Bel\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":119,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41715,48.98583]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14724,\"INSEE_Comm\":\"78209\",\"nomCom\":\"�manc�\",\"NOM_COM\":\"EMANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":59,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7339,48.59124]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14726,\"INSEE_Comm\":\"78472\",\"nomCom\":\"Orsonville\",\"NOM_COM\":\"ORSONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82684,48.47791]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14729,\"INSEE_Comm\":\"14374\",\"nomCom\":\"Loges\",\"NOM_COM\":\"LESLOGES\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.80122,49.04441]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14733,\"INSEE_Comm\":\"80387\",\"nomCom\":\"Grattepanche\",\"NOM_COM\":\"GRATTEPANCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3061,49.78725]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14734,\"INSEE_Comm\":\"80645\",\"nomCom\":\"Puchevillers\",\"NOM_COM\":\"PUCHEVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41064,50.05503]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14735,\"INSEE_Comm\":\"80285\",\"nomCom\":\"Essertaux\",\"NOM_COM\":\"ESSERTAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25809,49.74657]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14736,\"INSEE_Comm\":\"80793\",\"nomCom\":\"Vignacourt\",\"NOM_COM\":\"VIGNACOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":137,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18679,50.00851]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14737,\"INSEE_Comm\":\"80631\",\"nomCom\":\"Ponches-Estruval\",\"NOM_COM\":\"PONCHES-ESTRUVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87589,50.31011]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14753,\"INSEE_Comm\":\"76436\",\"nomCom\":\"Mesnil-sous-Jumi�ges\",\"NOM_COM\":\"LEMESNIL-SOUS-JUMIEGES\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.855,49.41432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14771,\"INSEE_Comm\":\"14219\",\"nomCom\":\"Danvou-la-Ferri�re\",\"NOM_COM\":\"DANVOU-LA-FERRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68009,48.96383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14795,\"INSEE_Comm\":\"80189\",\"nomCom\":\"Chavatte\",\"NOM_COM\":\"LACHAVATTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76427,49.75567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14798,\"INSEE_Comm\":\"61408\",\"nomCom\":\"Sainte-Honorine-la-Guillaume\",\"NOM_COM\":\"SAINTE-HONORINE-LA-GUILLAUME\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38153,48.77741]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14825,\"INSEE_Comm\":\"28139\",\"nomCom\":\"�peautrolles\",\"NOM_COM\":\"EPEAUTROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33312,48.31308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14834,\"INSEE_Comm\":\"80392\",\"nomCom\":\"Grouches-Luchuel\",\"NOM_COM\":\"GROUCHES-LUCHUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38076,50.18215]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14843,\"INSEE_Comm\":\"78138\",\"nomCom\":\"Chanteloup-les-Vignes\",\"NOM_COM\":\"CHANTELOUP-LES-VIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"7839\",\"nomCan\":\"Andr�sy\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":194,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.032,48.976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14873,\"INSEE_Comm\":\"28189\",\"nomCom\":\"Guilleville\",\"NOM_COM\":\"GUILLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80248,48.22189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14874,\"INSEE_Comm\":\"27687\",\"nomCom\":\"Vieux-Villez\",\"NOM_COM\":\"VIEUX-VILLEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28468,49.16873]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14877,\"INSEE_Comm\":\"27499\",\"nomCom\":\"Roussi�re\",\"NOM_COM\":\"LAROUSSIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58241,48.96475]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14879,\"INSEE_Comm\":\"27164\",\"nomCom\":\"Combon\",\"NOM_COM\":\"COMBON\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88546,49.09601]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14880,\"INSEE_Comm\":\"27641\",\"nomCom\":\"Tilleul-Lambert\",\"NOM_COM\":\"LETILLEUL-LAMBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93119,49.08135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14887,\"INSEE_Comm\":\"76170\",\"nomCom\":\"Chapelle-du-Bourgay\",\"NOM_COM\":\"LACHAPELLE-DU-BOURGAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1461,49.82226]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14891,\"INSEE_Comm\":\"60086\",\"nomCom\":\"Boran-sur-Oise\",\"NOM_COM\":\"BORAN-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35199,49.17502]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14893,\"INSEE_Comm\":\"27455\",\"nomCom\":\"Piencourt\",\"NOM_COM\":\"PIENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4077,49.17152]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14895,\"INSEE_Comm\":\"27195\",\"nomCom\":\"Dame-Marie\",\"NOM_COM\":\"DAME-MARIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00874,48.80541]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14904,\"INSEE_Comm\":\"27512\",\"nomCom\":\"Saint-Aubin-de-Scellon\",\"NOM_COM\":\"SAINT-AUBIN-DE-SCELLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47332,49.17704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14905,\"INSEE_Comm\":\"60411\",\"nomCom\":\"Monneville\",\"NOM_COM\":\"MONNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97059,49.21259]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14906,\"INSEE_Comm\":\"61358\",\"nomCom\":\"Sai\",\"NOM_COM\":\"SAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6103\",\"nomCan\":\"Argentan-Est\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0236,48.74077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14907,\"INSEE_Comm\":\"14294\",\"nomCom\":\"Garcelles-Secqueville\",\"NOM_COM\":\"GARCELLES-SECQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":92,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28091,49.09669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14908,\"INSEE_Comm\":\"14099\",\"nomCom\":\"Bretteville-sur-Dives\",\"NOM_COM\":\"BRETTEVILLE-SUR-DIVES\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00162,49.03617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14909,\"INSEE_Comm\":\"61496\",\"nomCom\":\"Urou-et-Crennes\",\"NOM_COM\":\"UROU-ET-CRENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6103\",\"nomCan\":\"Argentan-Est\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.01213,48.75728]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14910,\"INSEE_Comm\":\"61013\",\"nomCom\":\"Aunay-les-Bois\",\"NOM_COM\":\"AUNAY-LES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29341,48.54668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14936,\"INSEE_Comm\":\"60185\",\"nomCom\":\"Crouy-en-Thelle\",\"NOM_COM\":\"CROUY-EN-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":119,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3201,49.20987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14964,\"INSEE_Comm\":\"14529\",\"nomCom\":\"Ranchy\",\"NOM_COM\":\"RANCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76336,49.25515]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14965,\"INSEE_Comm\":\"14535\",\"nomCom\":\"Reviers\",\"NOM_COM\":\"REVIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.46569,49.29846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14966,\"INSEE_Comm\":\"14169\",\"nomCom\":\"Colombiers-sur-Seulles\",\"NOM_COM\":\"COLOMBIERS-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.506,49.29924]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14967,\"INSEE_Comm\":\"27071\",\"nomCom\":\"Bois-Hellain\",\"NOM_COM\":\"LEBOIS-HELLAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39105,49.27599]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14968,\"INSEE_Comm\":\"76186\",\"nomCom\":\"Conteville\",\"NOM_COM\":\"CONTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63796,49.69667]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14969,\"INSEE_Comm\":\"76323\",\"nomCom\":\"Graval\",\"NOM_COM\":\"GRAVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5507,49.72807]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14970,\"INSEE_Comm\":\"76201\",\"nomCom\":\"Croisy-sur-Andelle\",\"NOM_COM\":\"CROISY-SUR-ANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40712,49.45947]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14971,\"INSEE_Comm\":\"80657\",\"nomCom\":\"Quiry-le-Sec\",\"NOM_COM\":\"QUIRY-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38385,49.67003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14972,\"INSEE_Comm\":\"60590\",\"nomCom\":\"Saint-Omer-en-Chauss�e\",\"NOM_COM\":\"SAINT-OMER-EN-CHAUSSEE\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00243,49.53337]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14973,\"INSEE_Comm\":\"27010\",\"nomCom\":\"Am�court\",\"NOM_COM\":\"AMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7333,49.37674]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14974,\"INSEE_Comm\":\"80455\",\"nomCom\":\"Lachapelle\",\"NOM_COM\":\"LACHAPELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95723,49.76179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14975,\"INSEE_Comm\":\"60688\",\"nomCom\":\"Villers-sur-Bonni�res\",\"NOM_COM\":\"VILLERS-SUR-BONNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96062,49.5341]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14976,\"INSEE_Comm\":\"60591\",\"nomCom\":\"Saint-Paul\",\"NOM_COM\":\"SAINT-PAUL\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9869,49.42791]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14977,\"INSEE_Comm\":\"60388\",\"nomCom\":\"Martincourt\",\"NOM_COM\":\"MARTINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90457,49.53024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14978,\"INSEE_Comm\":\"60254\",\"nomCom\":\"Franci�res\",\"NOM_COM\":\"FRANCIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66753,49.44705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14979,\"INSEE_Comm\":\"60106\",\"nomCom\":\"Breuil-le-Sec\",\"NOM_COM\":\"BREUIL-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":112,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45696,49.3779]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":14980,\"INSEE_Comm\":\"60470\",\"nomCom\":\"Noyers-Saint-Martin\",\"NOM_COM\":\"NOYERS-SAINT-MARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26637,49.5481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15019,\"INSEE_Comm\":\"76143\",\"nomCom\":\"Bretteville-du-Grand-Caux\",\"NOM_COM\":\"BRETTEVILLE-DU-GRAND-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38597,49.66534]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15020,\"INSEE_Comm\":\"76425\",\"nomCom\":\"Mentheville\",\"NOM_COM\":\"MENTHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40952,49.69151]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15021,\"INSEE_Comm\":\"76125\",\"nomCom\":\"Bosc-le-Hard\",\"NOM_COM\":\"BOSC-LE-HARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18584,49.62173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15025,\"INSEE_Comm\":\"28397\",\"nomCom\":\"Umpeau\",\"NOM_COM\":\"UMPEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6658,48.46846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15026,\"INSEE_Comm\":\"78564\",\"nomCom\":\"Saint-Martin-de-Br�thencourt\",\"NOM_COM\":\"SAINT-MARTIN-DE-BRETHENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91568,48.51486]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15039,\"INSEE_Comm\":\"27581\",\"nomCom\":\"Saint-Ouen-des-Champs\",\"NOM_COM\":\"SAINT-OUEN-DES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52863,49.39893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15044,\"INSEE_Comm\":\"27245\",\"nomCom\":\"Fleury-la-For�t\",\"NOM_COM\":\"FLEURY-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55588,49.42658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15059,\"INSEE_Comm\":\"78107\",\"nomCom\":\"Br�val\",\"NOM_COM\":\"BREVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54156,48.95496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15060,\"INSEE_Comm\":\"28353\",\"nomCom\":\"Saint-Maur-sur-le-Loir\",\"NOM_COM\":\"SAINT-MAUR-SUR-LE-LOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41832,48.15182]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15061,\"INSEE_Comm\":\"28164\",\"nomCom\":\"Fresnay-l'�v�que\",\"NOM_COM\":\"FRESNAY-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81447,48.25846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15071,\"INSEE_Comm\":\"14661\",\"nomCom\":\"Saint-Vaast-sur-Seulles\",\"NOM_COM\":\"SAINT-VAAST-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.6304,49.13524]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15075,\"INSEE_Comm\":\"14505\",\"nomCom\":\"Placy\",\"NOM_COM\":\"PLACY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42665,48.97879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15077,\"INSEE_Comm\":\"14702\",\"nomCom\":\"Tournay-sur-Odon\",\"NOM_COM\":\"TOURNAY-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58295,49.09609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15081,\"INSEE_Comm\":\"78548\",\"nomCom\":\"Saint-Forget\",\"NOM_COM\":\"SAINT-FORGET\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99704,48.71277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15087,\"INSEE_Comm\":\"80272\",\"nomCom\":\"�p�nancourt\",\"NOM_COM\":\"EPENANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.92951,49.82023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15088,\"INSEE_Comm\":\"80781\",\"nomCom\":\"Vauvillers\",\"NOM_COM\":\"VAUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70586,49.84301]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15089,\"INSEE_Comm\":\"80425\",\"nomCom\":\"H�dauville\",\"NOM_COM\":\"HEDAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5699,50.04832]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15091,\"INSEE_Comm\":\"80591\",\"nomCom\":\"Neuville-au-Bois\",\"NOM_COM\":\"NEUVILLE-AU-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78328,49.96989]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15093,\"INSEE_Comm\":\"80217\",\"nomCom\":\"Courcelles-au-Bois\",\"NOM_COM\":\"COURCELLES-AU-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58253,50.10536]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15094,\"INSEE_Comm\":\"80686\",\"nomCom\":\"Rubempr�\",\"NOM_COM\":\"RUBEMPRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37181,50.01875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15113,\"INSEE_Comm\":\"27313\",\"nomCom\":\"Hareng�re\",\"NOM_COM\":\"LAHARENGERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00115,49.23136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15139,\"INSEE_Comm\":\"60628\",\"nomCom\":\"Therdonne\",\"NOM_COM\":\"THERDONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15298,49.42316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15151,\"INSEE_Comm\":\"61362\",\"nomCom\":\"Saint-Andr�-de-Messei\",\"NOM_COM\":\"SAINT-ANDRE-DE-MESSEI\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52193,48.68838]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15163,\"INSEE_Comm\":\"28200\",\"nomCom\":\"Jaudrais\",\"NOM_COM\":\"JAUDRAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12323,48.57425]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15175,\"INSEE_Comm\":\"27130\",\"nomCom\":\"Capelle-les-Grands\",\"NOM_COM\":\"CAPELLE-LES-GRANDS\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47211,49.04867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15179,\"INSEE_Comm\":\"61293\",\"nomCom\":\"Mortagne-au-Perche\",\"NOM_COM\":\"MORTAGNE-AU-PERCHE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":136,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56141,48.52044]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15186,\"INSEE_Comm\":\"61187\",\"nomCom\":\"Genettes\",\"NOM_COM\":\"LESGENETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58234,48.66116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15190,\"INSEE_Comm\":\"78490\",\"nomCom\":\"Plaisir\",\"NOM_COM\":\"PLAISIR\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7838\",\"nomCan\":\"Plaisir\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":267,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94699,48.81261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15197,\"INSEE_Comm\":\"27360\",\"nomCom\":\"Jumelles\",\"NOM_COM\":\"JUMELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21194,48.91674]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15198,\"INSEE_Comm\":\"27660\",\"nomCom\":\"Trinit�-de-R�ville\",\"NOM_COM\":\"LATRINITE-DE-REVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51065,48.96692]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15200,\"INSEE_Comm\":\"27183\",\"nomCom\":\"Couture-Boussey\",\"NOM_COM\":\"LACOUTURE-BOUSSEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":117,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39632,48.90201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15202,\"INSEE_Comm\":\"27200\",\"nomCom\":\"Dardez\",\"NOM_COM\":\"DARDEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20733,49.084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15211,\"INSEE_Comm\":\"28020\",\"nomCom\":\"Baignolet\",\"NOM_COM\":\"BAIGNOLET\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63036,48.17813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15228,\"INSEE_Comm\":\"27150\",\"nomCom\":\"Chapelle-R�anville\",\"NOM_COM\":\"LACHAPELLE-REANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38085,49.09462]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15233,\"INSEE_Comm\":\"27325\",\"nomCom\":\"Hecmanville\",\"NOM_COM\":\"HECMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66364,49.1726]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15235,\"INSEE_Comm\":\"61266\",\"nomCom\":\"M�nil-Guyon\",\"NOM_COM\":\"LEMENIL-GUYON\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29434,48.58006]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15236,\"INSEE_Comm\":\"61257\",\"nomCom\":\"M�houdin\",\"NOM_COM\":\"MEHOUDIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38134,48.50881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15237,\"INSEE_Comm\":\"27412\",\"nomCom\":\"Montaure\",\"NOM_COM\":\"MONTAURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09813,49.22972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15243,\"INSEE_Comm\":\"27343\",\"nomCom\":\"Houlbec-Cocherel\",\"NOM_COM\":\"HOULBEC-COCHEREL\",\"Statut\":\"Communesimple\",\"idCan\":\"2740\",\"nomCan\":\"Vernon-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36126,49.06454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15246,\"INSEE_Comm\":\"78050\",\"nomCom\":\"Bazoches-sur-Guyonne\",\"NOM_COM\":\"BAZOCHES-SUR-GUYONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85242,48.77385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15247,\"INSEE_Comm\":\"61107\",\"nomCom\":\"Ciral\",\"NOM_COM\":\"CIRAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13246,48.50706]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15248,\"INSEE_Comm\":\"14277\",\"nomCom\":\"Fontenay-le-Marmion\",\"NOM_COM\":\"FONTENAY-LE-MARMION\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":117,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34463,49.08693]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15249,\"INSEE_Comm\":\"61091\",\"nomCom\":\"Champsecret\",\"NOM_COM\":\"CHAMPSECRET\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52522,48.60521]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15256,\"INSEE_Comm\":\"76524\",\"nomCom\":\"Reuville\",\"NOM_COM\":\"REUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86272,49.74718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15301,\"INSEE_Comm\":\"14200\",\"nomCom\":\"Creully\",\"NOM_COM\":\"CREULLY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":149,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5433,49.28643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15302,\"INSEE_Comm\":\"14586\",\"nomCom\":\"Saint-Germain-du-Pert\",\"NOM_COM\":\"SAINT-GERMAIN-DU-PERT\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.04328,49.33025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15303,\"INSEE_Comm\":\"14308\",\"nomCom\":\"Goustranville\",\"NOM_COM\":\"GOUSTRANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10827,49.2227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15304,\"INSEE_Comm\":\"76148\",\"nomCom\":\"Bures-en-Bray\",\"NOM_COM\":\"BURES-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33526,49.77921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15305,\"INSEE_Comm\":\"76653\",\"nomCom\":\"Saint-Vaast-Dieppedalle\",\"NOM_COM\":\"SAINT-VAAST-DIEPPEDALLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72235,49.75758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15306,\"INSEE_Comm\":\"76550\",\"nomCom\":\"Sahurs\",\"NOM_COM\":\"SAHURS\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94872,49.36676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15307,\"INSEE_Comm\":\"76513\",\"nomCom\":\"Quevillon\",\"NOM_COM\":\"QUEVILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96056,49.41502]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15308,\"INSEE_Comm\":\"60703\",\"nomCom\":\"Marais\",\"NOM_COM\":\"AUXMARAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6004\",\"nomCan\":\"Beauvais-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04083,49.40737]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15309,\"INSEE_Comm\":\"60575\",\"nomCom\":\"Sainte-Genevi�ve\",\"NOM_COM\":\"SAINTE-GENEVIEVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":163,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1983,49.28864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15310,\"INSEE_Comm\":\"60002\",\"nomCom\":\"Abbecourt\",\"NOM_COM\":\"ABBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15503,49.36121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15311,\"INSEE_Comm\":\"60112\",\"nomCom\":\"Brunvillers-la-Motte\",\"NOM_COM\":\"BRUNVILLERS-LA-MOTTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45377,49.55557]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15312,\"INSEE_Comm\":\"60587\",\"nomCom\":\"Saint-Martin-Longueau\",\"NOM_COM\":\"SAINT-MARTIN-LONGUEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6001,49.34724]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15313,\"INSEE_Comm\":\"60048\",\"nomCom\":\"Baugy\",\"NOM_COM\":\"BAUGY\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75518,49.45593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15314,\"INSEE_Comm\":\"60689\",\"nomCom\":\"Villers-sur-Coudun\",\"NOM_COM\":\"VILLERS-SUR-COUDUN\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80476,49.48633]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15315,\"INSEE_Comm\":\"60013\",\"nomCom\":\"Angicourt\",\"NOM_COM\":\"ANGICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50252,49.31489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15316,\"INSEE_Comm\":\"60534\",\"nomCom\":\"Rethondes\",\"NOM_COM\":\"RETHONDES\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94461,49.42899]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15317,\"INSEE_Comm\":\"60680\",\"nomCom\":\"Villeneuve-sur-Verberie\",\"NOM_COM\":\"VILLENEUVE-SUR-VERBERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6799,49.27514]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15318,\"INSEE_Comm\":\"60201\",\"nomCom\":\"Dompierre\",\"NOM_COM\":\"DOMPIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53425,49.59274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15322,\"INSEE_Comm\":\"60052\",\"nomCom\":\"Beaugies-sous-Bois\",\"NOM_COM\":\"BEAUGIES-SOUS-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09987,49.63721]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15336,\"INSEE_Comm\":\"80665\",\"nomCom\":\"Regni�re-�cluse\",\"NOM_COM\":\"REGNIERE-ECLUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76836,50.28691]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15339,\"INSEE_Comm\":\"76262\",\"nomCom\":\"Fesques\",\"NOM_COM\":\"FESQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48841,49.79047]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15351,\"INSEE_Comm\":\"76006\",\"nomCom\":\"Amfreville-les-Champs\",\"NOM_COM\":\"AMFREVILLE-LES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82624,49.69852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15352,\"INSEE_Comm\":\"76355\",\"nomCom\":\"H�ricourt-en-Caux\",\"NOM_COM\":\"HERICOURT-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7033,49.69457]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15353,\"INSEE_Comm\":\"76303\",\"nomCom\":\"Gommerville\",\"NOM_COM\":\"GOMMERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3596,49.55243]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15354,\"INSEE_Comm\":\"76713\",\"nomCom\":\"Triquerville\",\"NOM_COM\":\"TRIQUERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61844,49.50229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15384,\"INSEE_Comm\":\"28136\",\"nomCom\":\"�cluzelles\",\"NOM_COM\":\"ECLUZELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42195,48.70843]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15385,\"INSEE_Comm\":\"28403\",\"nomCom\":\"Ver-l�s-Chartres\",\"NOM_COM\":\"VER-LES-CHARTRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48044,48.37809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15386,\"INSEE_Comm\":\"28295\",\"nomCom\":\"Ozoir-le-Breuil\",\"NOM_COM\":\"OZOIR-LE-BREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47584,48.01403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15397,\"INSEE_Comm\":\"60353\",\"nomCom\":\"Lavacquerie\",\"NOM_COM\":\"LAVACQUERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1008,49.68]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15399,\"INSEE_Comm\":\"60096\",\"nomCom\":\"Boutavent\",\"NOM_COM\":\"BOUTAVENT\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75329,49.63846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15409,\"INSEE_Comm\":\"95585\",\"nomCom\":\"Sarcelles\",\"NOM_COM\":\"SARCELLES\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"9598\",\"nomCan\":\"Sarcelles\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":672,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38161,48.99023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15416,\"INSEE_Comm\":\"80723\",\"nomCom\":\"Saisseval\",\"NOM_COM\":\"SAISSEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11887,49.90153]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15417,\"INSEE_Comm\":\"80210\",\"nomCom\":\"Contre\",\"NOM_COM\":\"CONTRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08802,49.74573]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15418,\"INSEE_Comm\":\"14115\",\"nomCom\":\"Bures-les-Monts\",\"NOM_COM\":\"BURES-LES-MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.96784,48.95171]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15419,\"INSEE_Comm\":\"80184\",\"nomCom\":\"Cerisy\",\"NOM_COM\":\"CERISY\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62244,49.89605]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15420,\"INSEE_Comm\":\"80231\",\"nomCom\":\"Curlu\",\"NOM_COM\":\"CURLU\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81851,49.96839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15422,\"INSEE_Comm\":\"80383\",\"nomCom\":\"Goyencourt\",\"NOM_COM\":\"GOYENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76642,49.72139]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15424,\"INSEE_Comm\":\"80239\",\"nomCom\":\"Devise\",\"NOM_COM\":\"DEVISE\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00863,49.85113]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15427,\"INSEE_Comm\":\"80196\",\"nomCom\":\"Citerne\",\"NOM_COM\":\"CITERNE\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81691,49.97901]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15429,\"INSEE_Comm\":\"14113\",\"nomCom\":\"Burcy\",\"NOM_COM\":\"BURCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.80526,48.86941]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15511,\"INSEE_Comm\":\"28354\",\"nomCom\":\"Saint-Maurice-Saint-Germain\",\"NOM_COM\":\"SAINT-MAURICE-SAINT-GERMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07345,48.49004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15512,\"INSEE_Comm\":\"14019\",\"nomCom\":\"Arganchy\",\"NOM_COM\":\"ARGANCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73193,49.22998]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15513,\"INSEE_Comm\":\"14303\",\"nomCom\":\"Glos\",\"NOM_COM\":\"GLOS\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28133,49.12478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15538,\"INSEE_Comm\":\"27138\",\"nomCom\":\"Chamblac\",\"NOM_COM\":\"CHAMBLAC\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56256,48.9923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15539,\"INSEE_Comm\":\"27118\",\"nomCom\":\"Brosville\",\"NOM_COM\":\"BROSVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11344,49.10979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15549,\"INSEE_Comm\":\"28106\",\"nomCom\":\"Conie-Molitard\",\"NOM_COM\":\"CONIE-MOLITARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44167,48.11348]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15551,\"INSEE_Comm\":\"28416\",\"nomCom\":\"Villeneuve-Saint-Nicolas\",\"NOM_COM\":\"VILLENEUVE-SAINT-NICOLAS\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56607,48.28947]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15554,\"INSEE_Comm\":\"28150\",\"nomCom\":\"Fert�-Villeneuil\",\"NOM_COM\":\"LAFERTE-VILLENEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3432,47.98397]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15555,\"INSEE_Comm\":\"28356\",\"nomCom\":\"Saint-Pellerin\",\"NOM_COM\":\"SAINT-PELLERIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14349,48.07244]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15568,\"INSEE_Comm\":\"80310\",\"nomCom\":\"Fienvillers\",\"NOM_COM\":\"FIENVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2344,50.11788]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15578,\"INSEE_Comm\":\"14599\",\"nomCom\":\"Saint-Julien-de-Mailloc\",\"NOM_COM\":\"SAINT-JULIEN-DE-MAILLOC\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33618,49.08187]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15580,\"INSEE_Comm\":\"27219\",\"nomCom\":\"�p�gard\",\"NOM_COM\":\"EPEGARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87499,49.18245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15585,\"INSEE_Comm\":\"80804\",\"nomCom\":\"Villers-sous-Ailly\",\"NOM_COM\":\"VILLERS-SOUS-AILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01779,50.06247]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15587,\"INSEE_Comm\":\"27359\",\"nomCom\":\"Juignettes\",\"NOM_COM\":\"JUIGNETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64345,48.84727]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15588,\"INSEE_Comm\":\"61103\",\"nomCom\":\"Chaumont\",\"NOM_COM\":\"CHAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33798,48.84449]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15589,\"INSEE_Comm\":\"27565\",\"nomCom\":\"Sainte-Marguerite-de-l'Autel\",\"NOM_COM\":\"SAINTE-MARGUERITE-DE-L'AUTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84599,48.91129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15590,\"INSEE_Comm\":\"27046\",\"nomCom\":\"Bazoques\",\"NOM_COM\":\"BAZOQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54968,49.17052]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15601,\"INSEE_Comm\":\"27131\",\"nomCom\":\"Carsix\",\"NOM_COM\":\"CARSIX\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67427,49.14144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15604,\"INSEE_Comm\":\"60412\",\"nomCom\":\"Montagny-en-Vexin\",\"NOM_COM\":\"MONTAGNY-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79648,49.1936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15605,\"INSEE_Comm\":\"78152\",\"nomCom\":\"Chavenay\",\"NOM_COM\":\"CHAVENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98288,48.84836]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15606,\"INSEE_Comm\":\"14002\",\"nomCom\":\"Acqueville\",\"NOM_COM\":\"ACQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37057,48.97077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15608,\"INSEE_Comm\":\"14173\",\"nomCom\":\"Cond�-sur-Ifs\",\"NOM_COM\":\"CONDE-SUR-IFS\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13967,49.0365]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15610,\"INSEE_Comm\":\"61192\",\"nomCom\":\"Godisson\",\"NOM_COM\":\"GODISSON\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24974,48.67585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15613,\"INSEE_Comm\":\"76306\",\"nomCom\":\"Gonnetot\",\"NOM_COM\":\"GONNETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89661,49.76191]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15632,\"INSEE_Comm\":\"78030\",\"nomCom\":\"Auffargis\",\"NOM_COM\":\"AUFFARGIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90244,48.68429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15654,\"INSEE_Comm\":\"14328\",\"nomCom\":\"H�rouvillette\",\"NOM_COM\":\"HEROUVILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26006,49.21404]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15655,\"INSEE_Comm\":\"14070\",\"nomCom\":\"Beuvron-en-Auge\",\"NOM_COM\":\"BEUVRON-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04178,49.19574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15656,\"INSEE_Comm\":\"14687\",\"nomCom\":\"Theil-en-Auge\",\"NOM_COM\":\"LETHEIL-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25155,49.34689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15657,\"INSEE_Comm\":\"27601\",\"nomCom\":\"Saint-Samson-de-la-Roque\",\"NOM_COM\":\"SAINT-SAMSON-DE-LA-ROQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42506,49.42576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15658,\"INSEE_Comm\":\"27095\",\"nomCom\":\"Bosrobert\",\"NOM_COM\":\"BOSROBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76561,49.22011]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15659,\"INSEE_Comm\":\"76478\",\"nomCom\":\"Notre-Dame-du-Parc\",\"NOM_COM\":\"NOTRE-DAME-DU-PARC\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1289,49.74978]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15660,\"INSEE_Comm\":\"60649\",\"nomCom\":\"Troussures\",\"NOM_COM\":\"TROUSSURES\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95618,49.38211]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15661,\"INSEE_Comm\":\"60451\",\"nomCom\":\"Neuilly-sous-Clermont\",\"NOM_COM\":\"NEUILLY-SOUS-CLERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40078,49.34967]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15662,\"INSEE_Comm\":\"80789\",\"nomCom\":\"Vermandovillers\",\"NOM_COM\":\"VERMANDOVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78316,49.84508]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15663,\"INSEE_Comm\":\"60424\",\"nomCom\":\"Montmartin\",\"NOM_COM\":\"MONTMARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69775,49.46616]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15664,\"INSEE_Comm\":\"60472\",\"nomCom\":\"Offoy\",\"NOM_COM\":\"OFFOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03853,49.6969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15665,\"INSEE_Comm\":\"80104\",\"nomCom\":\"Biencourt\",\"NOM_COM\":\"BIENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69314,49.97655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15670,\"INSEE_Comm\":\"60324\",\"nomCom\":\"Jaulzy\",\"NOM_COM\":\"JAULZY\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05948,49.38813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15693,\"INSEE_Comm\":\"95555\",\"nomCom\":\"Saint-Gratien\",\"NOM_COM\":\"SAINT-GRATIEN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9540\",\"nomCan\":\"Saint-Gratien\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":591,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28528,48.96892]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15700,\"INSEE_Comm\":\"76159\",\"nomCom\":\"Cany-Barville\",\"NOM_COM\":\"CANY-BARVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63329,49.77544]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15701,\"INSEE_Comm\":\"76083\",\"nomCom\":\"Bertheauville\",\"NOM_COM\":\"BERTHEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59161,49.75505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15707,\"INSEE_Comm\":\"27212\",\"nomCom\":\"�cauville\",\"NOM_COM\":\"ECAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9915,49.12602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15722,\"INSEE_Comm\":\"27039\",\"nomCom\":\"Barneville-sur-Seine\",\"NOM_COM\":\"BARNEVILLE-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85443,49.38456]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15741,\"INSEE_Comm\":\"80194\",\"nomCom\":\"Chuignes\",\"NOM_COM\":\"CHUIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75163,49.89805]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15762,\"INSEE_Comm\":\"14418\",\"nomCom\":\"Mesnil-Durand\",\"NOM_COM\":\"LEMESNIL-DURAND\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1523,49.04569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15776,\"INSEE_Comm\":\"76114\",\"nomCom\":\"Bolbec\",\"NOM_COM\":\"BOLBEC\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":109,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4844,49.57548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15779,\"INSEE_Comm\":\"61305\",\"nomCom\":\"Neuilly-sur-Eure\",\"NOM_COM\":\"NEUILLY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":73,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89083,48.53772]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15790,\"INSEE_Comm\":\"61075\",\"nomCom\":\"Ceauc�\",\"NOM_COM\":\"CEAUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.63458,48.49364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15792,\"INSEE_Comm\":\"27448\",\"nomCom\":\"Pacy-sur-Eure\",\"NOM_COM\":\"PACY-SUR-EURE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":128,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39951,49.0222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15805,\"INSEE_Comm\":\"60148\",\"nomCom\":\"Ch�vreville\",\"NOM_COM\":\"CHEVREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85851,49.11887]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15811,\"INSEE_Comm\":\"14022\",\"nomCom\":\"Asnelles\",\"NOM_COM\":\"ASNELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":124,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58463,49.33365]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15821,\"INSEE_Comm\":\"78029\",\"nomCom\":\"Aubergenville\",\"NOM_COM\":\"AUBERGENVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":60,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84871,48.96269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15822,\"INSEE_Comm\":\"28101\",\"nomCom\":\"Civry\",\"NOM_COM\":\"CIVRY\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4811,48.08529]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15832,\"INSEE_Comm\":\"14440\",\"nomCom\":\"Montamy\",\"NOM_COM\":\"MONTAMY\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.7567,48.96951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15851,\"INSEE_Comm\":\"27161\",\"nomCom\":\"Claville\",\"NOM_COM\":\"CLAVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2738\",\"nomCan\":\"�vreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":74,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01887,49.04856]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15852,\"INSEE_Comm\":\"80228\",\"nomCom\":\"Crotoy\",\"NOM_COM\":\"LECROTOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":519,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62316,50.24391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15880,\"INSEE_Comm\":\"27206\",\"nomCom\":\"Droisy\",\"NOM_COM\":\"DROISY\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12588,48.79758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15892,\"INSEE_Comm\":\"60271\",\"nomCom\":\"Gerberoy\",\"NOM_COM\":\"GERBEROY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84234,49.53847]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15915,\"INSEE_Comm\":\"80419\",\"nomCom\":\"Hargicourt\",\"NOM_COM\":\"HARGICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52056,49.71349]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15916,\"INSEE_Comm\":\"60702\",\"nomCom\":\"Welles-P�rennes\",\"NOM_COM\":\"WELLES-PERENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48323,49.60928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15936,\"INSEE_Comm\":\"28109\",\"nomCom\":\"Corv�es-les-Yys\",\"NOM_COM\":\"LESCORVEES-LES-YYS\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14755,48.36526]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15952,\"INSEE_Comm\":\"61070\",\"nomCom\":\"Caligny\",\"NOM_COM\":\"CALIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6115\",\"nomCan\":\"Flers-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60376,48.80715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15953,\"INSEE_Comm\":\"95142\",\"nomCom\":\"Chars\",\"NOM_COM\":\"CHARS\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":126,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9317,49.15751]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15960,\"INSEE_Comm\":\"61493\",\"nomCom\":\"Trinit�-des-Laitiers\",\"NOM_COM\":\"LATRINITE-DES-LAITIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37998,48.80144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15963,\"INSEE_Comm\":\"14118\",\"nomCom\":\"Caen\",\"NOM_COM\":\"CAEN\",\"Statut\":\"Pr?fectureder?gion\",\"idCan\":\"1497\",\"nomCan\":\"Caen\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2586,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36951,49.18487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15976,\"INSEE_Comm\":\"60136\",\"nomCom\":\"Cempuis\",\"NOM_COM\":\"CEMPUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98509,49.65755]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":15982,\"INSEE_Comm\":\"27011\",\"nomCom\":\"Amfreville-la-Campagne\",\"NOM_COM\":\"AMFREVILLE-LA-CAMPAGNE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92525,49.21319]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16045,\"INSEE_Comm\":\"27578\",\"nomCom\":\"Saint-Ouen-d'Attez\",\"NOM_COM\":\"SAINT-OUEN-D'ATTEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94385,48.79576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16058,\"INSEE_Comm\":\"61146\",\"nomCom\":\"Dompierre\",\"NOM_COM\":\"DOMPIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.55294,48.63682]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16064,\"INSEE_Comm\":\"76101\",\"nomCom\":\"Blangy-sur-Bresle\",\"NOM_COM\":\"BLANGY-SUR-BRESLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":103,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62061,49.91677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16067,\"INSEE_Comm\":\"80126\",\"nomCom\":\"Bouttencourt\",\"NOM_COM\":\"BOUTTENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61004,49.95058]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16068,\"INSEE_Comm\":\"27579\",\"nomCom\":\"Saint-Ouen-de-Pontcheuil\",\"NOM_COM\":\"SAINT-OUEN-DE-PONTCHEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95043,49.23478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16084,\"INSEE_Comm\":\"80519\",\"nomCom\":\"Matigny\",\"NOM_COM\":\"MATIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01279,49.79629]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16102,\"INSEE_Comm\":\"14724\",\"nomCom\":\"Varaville\",\"NOM_COM\":\"VARAVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.14568,49.26305]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16126,\"INSEE_Comm\":\"28161\",\"nomCom\":\"Fraz�\",\"NOM_COM\":\"FRAZE\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09855,48.25974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16131,\"INSEE_Comm\":\"76018\",\"nomCom\":\"Val-de-Sa�ne\",\"NOM_COM\":\"VAL-DE-SAANE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":69,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96627,49.70848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16143,\"INSEE_Comm\":\"76029\",\"nomCom\":\"Aubermesnil-aux-�rables\",\"NOM_COM\":\"AUBERMESNIL-AUX-ERABLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56837,49.80763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16144,\"INSEE_Comm\":\"80236\",\"nomCom\":\"Davenescourt\",\"NOM_COM\":\"DAVENESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59654,49.71418]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16166,\"INSEE_Comm\":\"80476\",\"nomCom\":\"Liercourt\",\"NOM_COM\":\"LIERCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89703,50.03285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16188,\"INSEE_Comm\":\"76423\",\"nomCom\":\"M�nerval\",\"NOM_COM\":\"MENERVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64726,49.55946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16195,\"INSEE_Comm\":\"14388\",\"nomCom\":\"Maisoncelles-la-Jourdan\",\"NOM_COM\":\"MAISONCELLES-LA-JOURDAN\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.84754,48.79254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16221,\"INSEE_Comm\":\"61463\",\"nomCom\":\"Sauvag�re\",\"NOM_COM\":\"LASAUVAGERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43503,48.61279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16222,\"INSEE_Comm\":\"61101\",\"nomCom\":\"Ch�teau-d'Almen�ches\",\"NOM_COM\":\"LECHATEAU-D'ALMENECHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13064,48.67269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16233,\"INSEE_Comm\":\"95026\",\"nomCom\":\"Asni�res-sur-Oise\",\"NOM_COM\":\"ASNIERES-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38006,49.14074]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16235,\"INSEE_Comm\":\"60471\",\"nomCom\":\"Noyon\",\"NOM_COM\":\"NOYON\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":222,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.008,49.57743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16278,\"INSEE_Comm\":\"28165\",\"nomCom\":\"Fr�tigny\",\"NOM_COM\":\"FRETIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00708,48.364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16304,\"INSEE_Comm\":\"61032\",\"nomCom\":\"Beaufai\",\"NOM_COM\":\"BEAUFAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6137\",\"nomCan\":\"Aigle-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51107,48.75564]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16324,\"INSEE_Comm\":\"28373\",\"nomCom\":\"Senonches\",\"NOM_COM\":\"SENONCHES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":85,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01906,48.55959]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16333,\"INSEE_Comm\":\"60505\",\"nomCom\":\"Pontarm�\",\"NOM_COM\":\"PONTARME\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55754,49.16522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16335,\"INSEE_Comm\":\"14364\",\"nomCom\":\"Ling�vres\",\"NOM_COM\":\"LINGEVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67447,49.17336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16338,\"INSEE_Comm\":\"60693\",\"nomCom\":\"Villeselve\",\"NOM_COM\":\"VILLESELVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.11193,49.68649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16354,\"INSEE_Comm\":\"61310\",\"nomCom\":\"Nonant-le-Pin\",\"NOM_COM\":\"NONANT-LE-PIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20729,48.70312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16399,\"INSEE_Comm\":\"61208\",\"nomCom\":\"Irai\",\"NOM_COM\":\"IRAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68887,48.67373]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16406,\"INSEE_Comm\":\"27516\",\"nomCom\":\"Saint-Aubin-le-Vertueux\",\"NOM_COM\":\"SAINT-AUBIN-LE-VERTUEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61166,49.05935]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16409,\"INSEE_Comm\":\"60083\",\"nomCom\":\"Bonneuil-en-Valois\",\"NOM_COM\":\"BONNEUIL-EN-VALOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98136,49.28008]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16439,\"INSEE_Comm\":\"61326\",\"nomCom\":\"Perrou\",\"NOM_COM\":\"PERROU\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5485,48.57607]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16447,\"INSEE_Comm\":\"28265\",\"nomCom\":\"Montlandon\",\"NOM_COM\":\"MONTLANDON\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02542,48.38819]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16456,\"INSEE_Comm\":\"14042\",\"nomCom\":\"Baron-sur-Odon\",\"NOM_COM\":\"BARON-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48197,49.12805]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16458,\"INSEE_Comm\":\"78513\",\"nomCom\":\"Queue-les-Yvelines\",\"NOM_COM\":\"LAQUEUE-LES-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":130,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76744,48.80279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16459,\"INSEE_Comm\":\"78367\",\"nomCom\":\"Mareil-Marly\",\"NOM_COM\":\"MAREIL-MARLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7835\",\"nomCan\":\"Pecq\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":87,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07668,48.88078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16463,\"INSEE_Comm\":\"80607\",\"nomCom\":\"Oissy\",\"NOM_COM\":\"OISSY\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06026,49.9027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16465,\"INSEE_Comm\":\"80702\",\"nomCom\":\"Saint-Fuscien\",\"NOM_COM\":\"SAINT-FUSCIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30202,49.83678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16466,\"INSEE_Comm\":\"80801\",\"nomCom\":\"Villers-Carbonnel\",\"NOM_COM\":\"VILLERS-CARBONNEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89377,49.87057]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16467,\"INSEE_Comm\":\"80166\",\"nomCom\":\"Canaples\",\"NOM_COM\":\"CANAPLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23089,50.06135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16468,\"INSEE_Comm\":\"80603\",\"nomCom\":\"Ochancourt\",\"NOM_COM\":\"OCHANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61202,50.10102]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16469,\"INSEE_Comm\":\"80648\",\"nomCom\":\"Pys\",\"NOM_COM\":\"PYS\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76242,50.08289]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16470,\"INSEE_Comm\":\"80461\",\"nomCom\":\"Lamotte-Brebi�re\",\"NOM_COM\":\"LAMOTTE-BREBIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39437,49.89464]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16483,\"INSEE_Comm\":\"76677\",\"nomCom\":\"Smermesnil\",\"NOM_COM\":\"SMERMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48692,49.8548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16551,\"INSEE_Comm\":\"27024\",\"nomCom\":\"Roncenay-Authenay\",\"NOM_COM\":\"LERONCENAY-AUTHENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04054,48.8666]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16552,\"INSEE_Comm\":\"61255\",\"nomCom\":\"Mauves-sur-Huisne\",\"NOM_COM\":\"MAUVES-SUR-HUISNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60825,48.43801]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16559,\"INSEE_Comm\":\"61425\",\"nomCom\":\"Saint-Martin-des-P�zerits\",\"NOM_COM\":\"SAINT-MARTIN-DES-PEZERITS\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48931,48.62718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16569,\"INSEE_Comm\":\"28172\",\"nomCom\":\"Gas\",\"NOM_COM\":\"GAS\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6676,48.56439]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16574,\"INSEE_Comm\":\"27211\",\"nomCom\":\"�cardenville-sur-Eure\",\"NOM_COM\":\"ECARDENVILLE-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2688,49.1067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16583,\"INSEE_Comm\":\"28083\",\"nomCom\":\"Charray\",\"NOM_COM\":\"CHARRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34088,47.96764]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16587,\"INSEE_Comm\":\"14040\",\"nomCom\":\"Barbeville\",\"NOM_COM\":\"BARBEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75494,49.27364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16608,\"INSEE_Comm\":\"27428\",\"nomCom\":\"Neubourg\",\"NOM_COM\":\"LENEUBOURG\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":246,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89718,49.14828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16610,\"INSEE_Comm\":\"61466\",\"nomCom\":\"Selle-la-Forge\",\"NOM_COM\":\"LASELLE-LA-FORGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53277,48.73542]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16622,\"INSEE_Comm\":\"95139\",\"nomCom\":\"Chapelle-en-Vexin\",\"NOM_COM\":\"LACHAPELLE-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72788,49.18326]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16623,\"INSEE_Comm\":\"14588\",\"nomCom\":\"Saint-Germain-Langot\",\"NOM_COM\":\"SAINT-GERMAIN-LANGOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32729,48.92232]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16646,\"INSEE_Comm\":\"14568\",\"nomCom\":\"Sainte-Croix-Grand-Tonne\",\"NOM_COM\":\"SAINTE-CROIX-GRAND-TONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5561,49.23374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16649,\"INSEE_Comm\":\"78536\",\"nomCom\":\"Sailly\",\"NOM_COM\":\"SAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79369,49.043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16669,\"INSEE_Comm\":\"14230\",\"nomCom\":\"Drubec\",\"NOM_COM\":\"DRUBEC\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10405,49.24969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16670,\"INSEE_Comm\":\"14068\",\"nomCom\":\"Bi�ville-Beuville\",\"NOM_COM\":\"BIEVILLE-BEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":229,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.33682,49.23947]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16671,\"INSEE_Comm\":\"14275\",\"nomCom\":\"Fontaine-Henry\",\"NOM_COM\":\"FONTAINE-HENRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.46578,49.27777]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16672,\"INSEE_Comm\":\"27468\",\"nomCom\":\"Pont-Authou\",\"NOM_COM\":\"PONT-AUTHOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70222,49.24233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16673,\"INSEE_Comm\":\"76027\",\"nomCom\":\"Assigny\",\"NOM_COM\":\"ASSIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2876,49.98279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16674,\"INSEE_Comm\":\"27167\",\"nomCom\":\"Cond�-sur-Risle\",\"NOM_COM\":\"CONDE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60841,49.3076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16675,\"INSEE_Comm\":\"80752\",\"nomCom\":\"Th�zy-Glimont\",\"NOM_COM\":\"THEZY-GLIMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43771,49.82158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16676,\"INSEE_Comm\":\"80353\",\"nomCom\":\"Fresnes-Mazancourt\",\"NOM_COM\":\"FRESNES-MAZANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86285,49.85137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16677,\"INSEE_Comm\":\"60318\",\"nomCom\":\"Houdancourt\",\"NOM_COM\":\"HOUDANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64795,49.33755]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16678,\"INSEE_Comm\":\"60558\",\"nomCom\":\"Roye-sur-Matz\",\"NOM_COM\":\"ROYE-SUR-MATZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77092,49.59362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16679,\"INSEE_Comm\":\"60352\",\"nomCom\":\"Lattainville\",\"NOM_COM\":\"LATTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80852,49.24103]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16680,\"INSEE_Comm\":\"60327\",\"nomCom\":\"Jouy-sous-Thelle\",\"NOM_COM\":\"JOUY-SOUS-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96067,49.3223]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16687,\"INSEE_Comm\":\"60410\",\"nomCom\":\"Mondescourt\",\"NOM_COM\":\"MONDESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.10934,49.60076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16722,\"INSEE_Comm\":\"76706\",\"nomCom\":\"Tourville-les-Ifs\",\"NOM_COM\":\"TOURVILLE-LES-IFS\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4,49.71204]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16723,\"INSEE_Comm\":\"76183\",\"nomCom\":\"Colleville\",\"NOM_COM\":\"COLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.457,49.75218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16724,\"INSEE_Comm\":\"76400\",\"nomCom\":\"Luneray\",\"NOM_COM\":\"LUNERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":89,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91798,49.82273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16727,\"INSEE_Comm\":\"28129\",\"nomCom\":\"Denonville\",\"NOM_COM\":\"DENONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79949,48.39291]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16732,\"INSEE_Comm\":\"27502\",\"nomCom\":\"Rugles\",\"NOM_COM\":\"RUGLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69137,48.81577]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16734,\"INSEE_Comm\":\"27469\",\"nomCom\":\"Pont-de-l'Arche\",\"NOM_COM\":\"PONT-DE-L'ARCHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":250,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14425,49.2909]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16735,\"INSEE_Comm\":\"76282\",\"nomCom\":\"Freneuse\",\"NOM_COM\":\"FRENEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7661\",\"nomCan\":\"Caudebec-l�s-Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06793,49.30807]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16743,\"INSEE_Comm\":\"27649\",\"nomCom\":\"Touffreville\",\"NOM_COM\":\"TOUFFREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43607,49.34434]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16756,\"INSEE_Comm\":\"28035\",\"nomCom\":\"Berch�res-les-Pierres\",\"NOM_COM\":\"BERCHERES-LES-PIERRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2825\",\"nomCan\":\"Chartres-Sud-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55554,48.37389]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16769,\"INSEE_Comm\":\"95288\",\"nomCom\":\"Groslay\",\"NOM_COM\":\"GROSLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"9518\",\"nomCan\":\"Montmorency\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":237,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35049,48.98497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16774,\"INSEE_Comm\":\"80267\",\"nomCom\":\"Ennemain\",\"NOM_COM\":\"ENNEMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95683,49.84014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16777,\"INSEE_Comm\":\"80390\",\"nomCom\":\"Grivesnes\",\"NOM_COM\":\"GRIVESNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4582,49.68685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16780,\"INSEE_Comm\":\"27072\",\"nomCom\":\"Bois-J�r�me-Saint-Ouen\",\"NOM_COM\":\"BOIS-JEROME-SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54844,49.10288]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16790,\"INSEE_Comm\":\"27592\",\"nomCom\":\"Saint-Pierre-de-Salerne\",\"NOM_COM\":\"SAINT-PIERRE-DE-SALERNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66741,49.20538]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16840,\"INSEE_Comm\":\"27651\",\"nomCom\":\"Tournedos-sur-Seine\",\"NOM_COM\":\"TOURNEDOS-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25675,49.2763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16851,\"INSEE_Comm\":\"27263\",\"nomCom\":\"Fourmetot\",\"NOM_COM\":\"FOURMETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57403,49.37822]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16852,\"INSEE_Comm\":\"14566\",\"nomCom\":\"Saint-Contest\",\"NOM_COM\":\"SAINT-CONTEST\",\"Statut\":\"Communesimple\",\"idCan\":\"1409\",\"nomCan\":\"Caen2eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":112,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.40095,49.21551]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16873,\"INSEE_Comm\":\"28412\",\"nomCom\":\"Villeau\",\"NOM_COM\":\"VILLEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59751,48.24077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16899,\"INSEE_Comm\":\"80025\",\"nomCom\":\"Argoules\",\"NOM_COM\":\"ARGOULES\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81791,50.33764]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16904,\"INSEE_Comm\":\"27356\",\"nomCom\":\"Jonquerets-de-Livet\",\"NOM_COM\":\"JONQUERETS-DE-LIVET\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61082,49.0197]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16906,\"INSEE_Comm\":\"27508\",\"nomCom\":\"Saint-Antonin-de-Sommaire\",\"NOM_COM\":\"SAINT-ANTONIN-DE-SOMMAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66269,48.82953]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16921,\"INSEE_Comm\":\"28077\",\"nomCom\":\"Chapelle-Fortin\",\"NOM_COM\":\"LACHAPELLE-FORTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86285,48.64786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16922,\"INSEE_Comm\":\"78237\",\"nomCom\":\"Flins-Neuve-�glise\",\"NOM_COM\":\"FLINS-NEUVE-EGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57663,48.89275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16923,\"INSEE_Comm\":\"61024\",\"nomCom\":\"Banvou\",\"NOM_COM\":\"BANVOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.55699,48.66383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16924,\"INSEE_Comm\":\"14759\",\"nomCom\":\"Villy-lez-Falaise\",\"NOM_COM\":\"VILLY-LEZ-FALAISE\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13596,48.90035]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16948,\"INSEE_Comm\":\"95039\",\"nomCom\":\"Auvers-sur-Oise\",\"NOM_COM\":\"AUVERS-SUR-OISE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":143,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15488,49.08039]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16951,\"INSEE_Comm\":\"28092\",\"nomCom\":\"Ch�tenay\",\"NOM_COM\":\"CHATENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8835,48.35523]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16971,\"INSEE_Comm\":\"14426\",\"nomCom\":\"Mesnil-sur-Blangy\",\"NOM_COM\":\"LEMESNIL-SUR-BLANGY\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26106,49.25954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16972,\"INSEE_Comm\":\"14423\",\"nomCom\":\"Mesnil-Patry\",\"NOM_COM\":\"LEMESNIL-PATRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54292,49.19262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16973,\"INSEE_Comm\":\"80148\",\"nomCom\":\"Buigny-l�s-Gamaches\",\"NOM_COM\":\"BUIGNY-LES-GAMACHES\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56884,50.01919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16974,\"INSEE_Comm\":\"76589\",\"nomCom\":\"Saint-Honor�\",\"NOM_COM\":\"SAINT-HONORE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1565,49.78374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16975,\"INSEE_Comm\":\"76695\",\"nomCom\":\"Tocqueville-les-Murs\",\"NOM_COM\":\"TOCQUEVILLE-LES-MURS\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50076,49.66302]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16976,\"INSEE_Comm\":\"76455\",\"nomCom\":\"Morville-sur-Andelle\",\"NOM_COM\":\"MORVILLE-SUR-ANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43209,49.48114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16977,\"INSEE_Comm\":\"76094\",\"nomCom\":\"Bierville\",\"NOM_COM\":\"BIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27429,49.53604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16978,\"INSEE_Comm\":\"80341\",\"nomCom\":\"Fourdrinoy\",\"NOM_COM\":\"FOURDRINOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10528,49.92401]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16979,\"INSEE_Comm\":\"80061\",\"nomCom\":\"Beaucamps-le-Jeune\",\"NOM_COM\":\"BEAUCAMPS-LE-JEUNE\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77087,49.81681]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16980,\"INSEE_Comm\":\"60390\",\"nomCom\":\"Maulers\",\"NOM_COM\":\"MAULERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16532,49.54409]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16981,\"INSEE_Comm\":\"60016\",\"nomCom\":\"Ansacq\",\"NOM_COM\":\"ANSACQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36431,49.35017]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16983,\"INSEE_Comm\":\"60509\",\"nomCom\":\"Pont-Sainte-Maxence\",\"NOM_COM\":\"PONT-SAINTE-MAXENCE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":328,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60796,49.30495]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16984,\"INSEE_Comm\":\"60496\",\"nomCom\":\"Plainville\",\"NOM_COM\":\"PLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44995,49.61294]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16986,\"INSEE_Comm\":\"60485\",\"nomCom\":\"Oursel-Maison\",\"NOM_COM\":\"OURSEL-MAISON\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17769,49.6022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16987,\"INSEE_Comm\":\"60229\",\"nomCom\":\"Fayel\",\"NOM_COM\":\"LEFAYEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69692,49.37229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16988,\"INSEE_Comm\":\"80619\",\"nomCom\":\"Pernois\",\"NOM_COM\":\"PERNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18597,50.06127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16989,\"INSEE_Comm\":\"80173\",\"nomCom\":\"Cardonnette\",\"NOM_COM\":\"CARDONNETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35602,49.95218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":16990,\"INSEE_Comm\":\"60603\",\"nomCom\":\"Salency\",\"NOM_COM\":\"SALENCY\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04634,49.58766]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17005,\"INSEE_Comm\":\"80377\",\"nomCom\":\"G�zaincourt\",\"NOM_COM\":\"GEZAINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31167,50.13934]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17031,\"INSEE_Comm\":\"76236\",\"nomCom\":\"Envronville\",\"NOM_COM\":\"ENVRONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67039,49.65855]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17032,\"INSEE_Comm\":\"76501\",\"nomCom\":\"Pierrefiques\",\"NOM_COM\":\"PIERREFIQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23026,49.67462]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17033,\"INSEE_Comm\":\"76570\",\"nomCom\":\"Saint-Crespin\",\"NOM_COM\":\"SAINT-CRESPIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11129,49.77413]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17034,\"INSEE_Comm\":\"76204\",\"nomCom\":\"Cropus\",\"NOM_COM\":\"CROPUS\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14694,49.73699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17054,\"INSEE_Comm\":\"27500\",\"nomCom\":\"Routot\",\"NOM_COM\":\"ROUTOT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72628,49.38511]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17056,\"INSEE_Comm\":\"27598\",\"nomCom\":\"Saint-Pierre-du-Vauvray\",\"NOM_COM\":\"SAINT-PIERRE-DU-VAUVRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2721\",\"nomCan\":\"Louviers-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21846,49.2237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17068,\"INSEE_Comm\":\"28158\",\"nomCom\":\"Fontenay-sur-Eure\",\"NOM_COM\":\"FONTENAY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42241,48.40599]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17086,\"INSEE_Comm\":\"80290\",\"nomCom\":\"Estr�es-l�s-Cr�cy\",\"NOM_COM\":\"ESTREES-LES-CRECY\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93392,50.25833]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17089,\"INSEE_Comm\":\"78442\",\"nomCom\":\"Neauphle-le-Ch�teau\",\"NOM_COM\":\"NEAUPHLE-LE-CHATEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9047,48.8131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17090,\"INSEE_Comm\":\"78653\",\"nomCom\":\"Vicq\",\"NOM_COM\":\"VICQ\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82844,48.82148]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17091,\"INSEE_Comm\":\"78162\",\"nomCom\":\"Choisel\",\"NOM_COM\":\"CHOISEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01451,48.67394]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17095,\"INSEE_Comm\":\"80094\",\"nomCom\":\"Berteaucourt-l�s-Thennes\",\"NOM_COM\":\"BERTEAUCOURT-LES-THENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46223,49.8198]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17098,\"INSEE_Comm\":\"80708\",\"nomCom\":\"Saint-Mard\",\"NOM_COM\":\"SAINT-MARD\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75656,49.6891]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17131,\"INSEE_Comm\":\"14325\",\"nomCom\":\"Hermanville-sur-Mer\",\"NOM_COM\":\"HERMANVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":161,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32298,49.28325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17153,\"INSEE_Comm\":\"80328\",\"nomCom\":\"Fontaine-sur-Somme\",\"NOM_COM\":\"FONTAINE-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94062,50.02466]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17160,\"INSEE_Comm\":\"61142\",\"nomCom\":\"Dame-Marie\",\"NOM_COM\":\"DAME-MARIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61816,48.35472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17163,\"INSEE_Comm\":\"61356\",\"nomCom\":\"Rouge\",\"NOM_COM\":\"LAROUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70907,48.28215]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17192,\"INSEE_Comm\":\"28312\",\"nomCom\":\"Puiseux\",\"NOM_COM\":\"PUISEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36882,48.63893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17197,\"INSEE_Comm\":\"61017\",\"nomCom\":\"Authieux-du-Puits\",\"NOM_COM\":\"LESAUTHIEUX-DU-PUITS\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32939,48.70494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17202,\"INSEE_Comm\":\"61395\",\"nomCom\":\"Saint-Germain-des-Grois\",\"NOM_COM\":\"SAINT-GERMAIN-DES-GROIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81563,48.40492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17205,\"INSEE_Comm\":\"27347\",\"nomCom\":\"Huest\",\"NOM_COM\":\"HUEST\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20782,49.037]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17233,\"INSEE_Comm\":\"27063\",\"nomCom\":\"Berville-la-Campagne\",\"NOM_COM\":\"BERVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89327,49.02616]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17238,\"INSEE_Comm\":\"61225\",\"nomCom\":\"Lign�res\",\"NOM_COM\":\"LIGNERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30615,48.73716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17240,\"INSEE_Comm\":\"27106\",\"nomCom\":\"Bournainville-Faverolles\",\"NOM_COM\":\"BOURNAINVILLE-FAVEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50099,49.1229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17256,\"INSEE_Comm\":\"95078\",\"nomCom\":\"Boissy-l'Aillerie\",\"NOM_COM\":\"BOISSY-L'AILLERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"9529\",\"nomCan\":\"Cergy-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03269,49.08312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17257,\"INSEE_Comm\":\"61291\",\"nomCom\":\"Montreuil-la-Cambe\",\"NOM_COM\":\"MONTREUIL-LA-CAMBE\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03371,48.8845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17258,\"INSEE_Comm\":\"61472\",\"nomCom\":\"S�vigny\",\"NOM_COM\":\"SEVIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6103\",\"nomCan\":\"Argentan-Est\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0198,48.77279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17259,\"INSEE_Comm\":\"14710\",\"nomCom\":\"Tr�prel\",\"NOM_COM\":\"TREPREL\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34681,48.8986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17260,\"INSEE_Comm\":\"14675\",\"nomCom\":\"Soliers\",\"NOM_COM\":\"SOLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":91,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28821,49.13159]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17261,\"INSEE_Comm\":\"61180\",\"nomCom\":\"Fresnay-le-Samson\",\"NOM_COM\":\"FRESNAY-LE-SAMSON\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20703,48.87217]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17263,\"INSEE_Comm\":\"61098\",\"nomCom\":\"Chapelle-pr�s-S�es\",\"NOM_COM\":\"LACHAPELLE-PRES-SEES\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15386,48.56676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17288,\"INSEE_Comm\":\"14030\",\"nomCom\":\"Authie\",\"NOM_COM\":\"AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1409\",\"nomCan\":\"Caen2eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":170,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43065,49.20581]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17319,\"INSEE_Comm\":\"14667\",\"nomCom\":\"Saon\",\"NOM_COM\":\"SAON\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86303,49.27138]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17320,\"INSEE_Comm\":\"27475\",\"nomCom\":\"Poterie-Mathieu\",\"NOM_COM\":\"LAPOTERIE-MATHIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52201,49.25252]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17321,\"INSEE_Comm\":\"76456\",\"nomCom\":\"Motteville\",\"NOM_COM\":\"MOTTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85439,49.63078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17322,\"INSEE_Comm\":\"76504\",\"nomCom\":\"Pleine-S�ve\",\"NOM_COM\":\"PLEINE-SEVE\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75257,49.81928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17323,\"INSEE_Comm\":\"76532\",\"nomCom\":\"Rocquemont\",\"NOM_COM\":\"ROCQUEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2981,49.60798]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17324,\"INSEE_Comm\":\"76412\",\"nomCom\":\"Martainville-�preville\",\"NOM_COM\":\"MARTAINVILLE-EPREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29465,49.45188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17325,\"INSEE_Comm\":\"76157\",\"nomCom\":\"Canteleu\",\"NOM_COM\":\"CANTELEU\",\"Statut\":\"Communesimple\",\"idCan\":\"7636\",\"nomCan\":\"Maromme\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":382,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01436,49.43351]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17326,\"INSEE_Comm\":\"76704\",\"nomCom\":\"Tourville-la-Chapelle\",\"NOM_COM\":\"TOURVILLE-LA-CHAPELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25929,49.94598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17327,\"INSEE_Comm\":\"80299\",\"nomCom\":\"Faloise\",\"NOM_COM\":\"LAFALOISE\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34027,49.69672]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17328,\"INSEE_Comm\":\"80426\",\"nomCom\":\"Heilly\",\"NOM_COM\":\"HEILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52981,49.96119]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17329,\"INSEE_Comm\":\"80621\",\"nomCom\":\"Pertain\",\"NOM_COM\":\"PERTAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86901,49.80598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17330,\"INSEE_Comm\":\"60626\",\"nomCom\":\"Talmontiers\",\"NOM_COM\":\"TALMONTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75051,49.38923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17331,\"INSEE_Comm\":\"60465\",\"nomCom\":\"Noir�mont\",\"NOM_COM\":\"NOIREMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21406,49.54775]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17332,\"INSEE_Comm\":\"60530\",\"nomCom\":\"R�m�rangles\",\"NOM_COM\":\"REMERANGLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29024,49.4482]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17333,\"INSEE_Comm\":\"60596\",\"nomCom\":\"Saint-Samson-la-Poterie\",\"NOM_COM\":\"SAINT-SAMSON-LA-POTERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73961,49.59328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17334,\"INSEE_Comm\":\"60660\",\"nomCom\":\"Vaumain\",\"NOM_COM\":\"LEVAUMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86578,49.34256]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17335,\"INSEE_Comm\":\"76411\",\"nomCom\":\"Marques\",\"NOM_COM\":\"MARQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68297,49.77983]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17336,\"INSEE_Comm\":\"60093\",\"nomCom\":\"Boulogne-la-Grasse\",\"NOM_COM\":\"BOULOGNE-LA-GRASSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70098,49.60803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17352,\"INSEE_Comm\":\"80590\",\"nomCom\":\"Neuilly-l'H�pital\",\"NOM_COM\":\"NEUILLY-L'HOPITAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88018,50.16938]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17353,\"INSEE_Comm\":\"80043\",\"nomCom\":\"Authie\",\"NOM_COM\":\"AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49153,50.1185]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17361,\"INSEE_Comm\":\"78146\",\"nomCom\":\"Chatou\",\"NOM_COM\":\"CHATOU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7804\",\"nomCan\":\"Chatou\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":519,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15394,48.89656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17366,\"INSEE_Comm\":\"76419\",\"nomCom\":\"Mauny\",\"NOM_COM\":\"MAUNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90253,49.39646]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17368,\"INSEE_Comm\":\"28371\",\"nomCom\":\"Saussay\",\"NOM_COM\":\"SAUSSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41035,48.85081]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17369,\"INSEE_Comm\":\"28169\",\"nomCom\":\"Garanci�res-en-Beauce\",\"NOM_COM\":\"GARANCIERES-EN-BEAUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91544,48.43337]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17370,\"INSEE_Comm\":\"78005\",\"nomCom\":\"Ach�res\",\"NOM_COM\":\"ACHERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7820\",\"nomCan\":\"Saint-Germain-en-Laye-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":625,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09003,48.9718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17385,\"INSEE_Comm\":\"27459\",\"nomCom\":\"Places\",\"NOM_COM\":\"LESPLACES\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41691,49.15314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17386,\"INSEE_Comm\":\"27204\",\"nomCom\":\"Doudeauville-en-Vexin\",\"NOM_COM\":\"DOUDEAUVILLE-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58935,49.3227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17389,\"INSEE_Comm\":\"60572\",\"nomCom\":\"Saint-�tienne-Roilaye\",\"NOM_COM\":\"SAINT-ETIENNE-ROILAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01122,49.36048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17413,\"INSEE_Comm\":\"14741\",\"nomCom\":\"Vey\",\"NOM_COM\":\"LEVEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.46191,48.91661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17425,\"INSEE_Comm\":\"78561\",\"nomCom\":\"Saint-Lambert\",\"NOM_COM\":\"SAINT-LAMBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00623,48.73394]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17426,\"INSEE_Comm\":\"14056\",\"nomCom\":\"Bauquay\",\"NOM_COM\":\"BAUQUAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62028,49.03383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17432,\"INSEE_Comm\":\"80058\",\"nomCom\":\"Bayonvillers\",\"NOM_COM\":\"BAYONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62855,49.86472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17436,\"INSEE_Comm\":\"80541\",\"nomCom\":\"Mesnil-Saint-Georges\",\"NOM_COM\":\"MESNIL-SAINT-GEORGES\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52474,49.64085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17437,\"INSEE_Comm\":\"80203\",\"nomCom\":\"Colincamps\",\"NOM_COM\":\"COLINCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6096,50.10156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17439,\"INSEE_Comm\":\"80580\",\"nomCom\":\"Nampont\",\"NOM_COM\":\"NAMPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75242,50.34216]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17515,\"INSEE_Comm\":\"95024\",\"nomCom\":\"Arthies\",\"NOM_COM\":\"ARTHIES\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79742,49.09496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17524,\"INSEE_Comm\":\"76385\",\"nomCom\":\"Lim�sy\",\"NOM_COM\":\"LIMESY\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":59,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92381,49.6085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17532,\"INSEE_Comm\":\"76023\",\"nomCom\":\"Anv�ville\",\"NOM_COM\":\"ANVEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74889,49.69965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17540,\"INSEE_Comm\":\"27602\",\"nomCom\":\"Saint-S�bastien-de-Morsent\",\"NOM_COM\":\"SAINT-SEBASTIEN-DE-MORSENT\",\"Statut\":\"Communesimple\",\"idCan\":\"2738\",\"nomCan\":\"�vreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":427,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07438,49.01255]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17543,\"INSEE_Comm\":\"28277\",\"nomCom\":\"Neuvy-en-Dunois\",\"NOM_COM\":\"NEUVY-EN-DUNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53607,48.20261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17546,\"INSEE_Comm\":\"28364\",\"nomCom\":\"Sancheville\",\"NOM_COM\":\"SANCHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57949,48.18253]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17555,\"INSEE_Comm\":\"27262\",\"nomCom\":\"Fourges\",\"NOM_COM\":\"FOURGES\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62695,49.126]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17558,\"INSEE_Comm\":\"28144\",\"nomCom\":\"�tilleux\",\"NOM_COM\":\"LESETILLEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81628,48.24477]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17562,\"INSEE_Comm\":\"27640\",\"nomCom\":\"Tilleul-Dame-Agn�s\",\"NOM_COM\":\"TILLEUL-DAME-AGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89103,49.00598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17567,\"INSEE_Comm\":\"61342\",\"nomCom\":\"Rai\",\"NOM_COM\":\"RAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6137\",\"nomCan\":\"Aigle-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56261,48.75623]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17568,\"INSEE_Comm\":\"27042\",\"nomCom\":\"Barville\",\"NOM_COM\":\"BARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48505,49.15786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17581,\"INSEE_Comm\":\"78571\",\"nomCom\":\"Saint-Nom-la-Bret�che\",\"NOM_COM\":\"SAINT-NOM-LA-BRETECHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":73,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01916,48.86341]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17582,\"INSEE_Comm\":\"95387\",\"nomCom\":\"Menouville\",\"NOM_COM\":\"MENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10779,49.15328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17583,\"INSEE_Comm\":\"78605\",\"nomCom\":\"Tacoigni�res\",\"NOM_COM\":\"TACOIGNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66523,48.83314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17584,\"INSEE_Comm\":\"14530\",\"nomCom\":\"Ranville\",\"NOM_COM\":\"RANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26342,49.22879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17586,\"INSEE_Comm\":\"14450\",\"nomCom\":\"Montviette\",\"NOM_COM\":\"MONTVIETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09668,48.99019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17587,\"INSEE_Comm\":\"61351\",\"nomCom\":\"Roiville\",\"NOM_COM\":\"ROIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23654,48.88014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17588,\"INSEE_Comm\":\"14456\",\"nomCom\":\"Moult\",\"NOM_COM\":\"MOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":265,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.16568,49.11277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17590,\"INSEE_Comm\":\"61252\",\"nomCom\":\"Mardilly\",\"NOM_COM\":\"MARDILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26266,48.82914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17591,\"INSEE_Comm\":\"95535\",\"nomCom\":\"Sagy\",\"NOM_COM\":\"SAGY\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96853,49.05261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17592,\"INSEE_Comm\":\"61261\",\"nomCom\":\"M�nil-Bro�t\",\"NOM_COM\":\"LEMENIL-BROUT\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23791,48.48001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17595,\"INSEE_Comm\":\"14125\",\"nomCom\":\"Cambes-en-Plaine\",\"NOM_COM\":\"CAMBES-EN-PLAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38378,49.23152]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17619,\"INSEE_Comm\":\"95166\",\"nomCom\":\"Cl�ry-en-Vexin\",\"NOM_COM\":\"CLERY-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84817,49.13193]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17620,\"INSEE_Comm\":\"60482\",\"nomCom\":\"Orry-la-Ville\",\"NOM_COM\":\"ORRY-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":134,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50856,49.14093]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17626,\"INSEE_Comm\":\"60031\",\"nomCom\":\"Autheuil-en-Valois\",\"NOM_COM\":\"AUTHEUIL-EN-VALOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.0635,49.17929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17645,\"INSEE_Comm\":\"27538\",\"nomCom\":\"Saint-�tienne-l'Allier\",\"NOM_COM\":\"SAINT-ETIENNE-L'ALLIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55748,49.26631]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17646,\"INSEE_Comm\":\"27089\",\"nomCom\":\"Bosc-Renoult-en-Roumois\",\"NOM_COM\":\"BOSC-RENOULT-EN-ROUMOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77209,49.29895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17647,\"INSEE_Comm\":\"76556\",\"nomCom\":\"Saint-Antoine-la-For�t\",\"NOM_COM\":\"SAINT-ANTOINE-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48094,49.53856]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17648,\"INSEE_Comm\":\"27531\",\"nomCom\":\"Saint-Denis-des-Monts\",\"NOM_COM\":\"SAINT-DENIS-DES-MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80658,49.25605]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17649,\"INSEE_Comm\":\"27302\",\"nomCom\":\"Gros-Theil\",\"NOM_COM\":\"LEGROS-THEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84052,49.22815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17650,\"INSEE_Comm\":\"76008\",\"nomCom\":\"Ancourt\",\"NOM_COM\":\"ANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17897,49.90855]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17651,\"INSEE_Comm\":\"76051\",\"nomCom\":\"Bacqueville-en-Caux\",\"NOM_COM\":\"BACQUEVILLE-EN-CAUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":91,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01042,49.79648]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17652,\"INSEE_Comm\":\"76054\",\"nomCom\":\"Bailly-en-Rivi�re\",\"NOM_COM\":\"BAILLY-EN-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35036,49.90793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17653,\"INSEE_Comm\":\"76007\",\"nomCom\":\"Anceaumeville\",\"NOM_COM\":\"ANCEAUMEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06536,49.56952]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17654,\"INSEE_Comm\":\"76484\",\"nomCom\":\"Oissel\",\"NOM_COM\":\"OISSEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7669\",\"nomCan\":\"Saint-�tienne-du-Rouvray\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":150,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07397,49.34771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17655,\"INSEE_Comm\":\"80743\",\"nomCom\":\"Suzanne\",\"NOM_COM\":\"SUZANNE\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76075,49.95927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17656,\"INSEE_Comm\":\"80615\",\"nomCom\":\"Ovillers-la-Boisselle\",\"NOM_COM\":\"OVILLERS-LA-BOISSELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69871,50.02913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17657,\"INSEE_Comm\":\"80150\",\"nomCom\":\"Buire-Courcelles\",\"NOM_COM\":\"BUIRE-COURCELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00805,49.93329]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17658,\"INSEE_Comm\":\"60344\",\"nomCom\":\"Lalandelle\",\"NOM_COM\":\"LALANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87216,49.38719]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17659,\"INSEE_Comm\":\"80779\",\"nomCom\":\"Vauchelles-les-Quesnoy\",\"NOM_COM\":\"VAUCHELLES-LES-QUESNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8001\",\"nomCan\":\"Abbeville-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8859,50.1036]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17660,\"INSEE_Comm\":\"60179\",\"nomCom\":\"Cr�vecoeur-le-Petit\",\"NOM_COM\":\"CREVECOEUR-LE-PETIT\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49886,49.57401]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17661,\"INSEE_Comm\":\"60227\",\"nomCom\":\"�vricourt\",\"NOM_COM\":\"EVRICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91628,49.5704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17662,\"INSEE_Comm\":\"60400\",\"nomCom\":\"Mesnil-sur-Bulles\",\"NOM_COM\":\"LEMESNIL-SUR-BULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34915,49.48225]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17663,\"INSEE_Comm\":\"60177\",\"nomCom\":\"Cressonsacq\",\"NOM_COM\":\"CRESSONSACQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56794,49.44824]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17664,\"INSEE_Comm\":\"60154\",\"nomCom\":\"Cinqueux\",\"NOM_COM\":\"CINQUEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53355,49.32435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17665,\"INSEE_Comm\":\"60560\",\"nomCom\":\"Rully\",\"NOM_COM\":\"RULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.7249,49.23904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17666,\"INSEE_Comm\":\"80512\",\"nomCom\":\"Mareuil-Caubert\",\"NOM_COM\":\"MAREUIL-CAUBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"8002\",\"nomCan\":\"Abbeville-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82601,50.071]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17671,\"INSEE_Comm\":\"60189\",\"nomCom\":\"Cuts\",\"NOM_COM\":\"CUTS\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.10271,49.5342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17672,\"INSEE_Comm\":\"60032\",\"nomCom\":\"Autr�ches\",\"NOM_COM\":\"AUTRECHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.12723,49.44919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17705,\"INSEE_Comm\":\"76251\",\"nomCom\":\"�talleville\",\"NOM_COM\":\"ETALLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82503,49.73262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17706,\"INSEE_Comm\":\"76361\",\"nomCom\":\"Heuqueville\",\"NOM_COM\":\"HEUQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15223,49.61769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17707,\"INSEE_Comm\":\"76587\",\"nomCom\":\"Sainte-H�l�ne-Bondeville\",\"NOM_COM\":\"SAINTE-HELENE-BONDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46071,49.77152]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17708,\"INSEE_Comm\":\"76748\",\"nomCom\":\"Vittefleur\",\"NOM_COM\":\"VITTEFLEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6373,49.81387]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17733,\"INSEE_Comm\":\"27379\",\"nomCom\":\"Mainneville\",\"NOM_COM\":\"MAINNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68714,49.3749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17734,\"INSEE_Comm\":\"27470\",\"nomCom\":\"Pont-Saint-Pierre\",\"NOM_COM\":\"PONT-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28756,49.34274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17749,\"INSEE_Comm\":\"14408\",\"nomCom\":\"May-sur-Orne\",\"NOM_COM\":\"MAY-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":111,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37885,49.09656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17763,\"INSEE_Comm\":\"14251\",\"nomCom\":\"Esson\",\"NOM_COM\":\"ESSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4595,48.96905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17772,\"INSEE_Comm\":\"95151\",\"nomCom\":\"Chauvry\",\"NOM_COM\":\"CHAUVRY\",\"Statut\":\"Communesimple\",\"idCan\":\"9525\",\"nomCan\":\"Taverny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26887,49.05305]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17774,\"INSEE_Comm\":\"14747\",\"nomCom\":\"Vieux\",\"NOM_COM\":\"VIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44295,49.11281]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17781,\"INSEE_Comm\":\"80022\",\"nomCom\":\"Andainville\",\"NOM_COM\":\"ANDAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78468,49.8912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17783,\"INSEE_Comm\":\"80825\",\"nomCom\":\"Wiry-au-Mont\",\"NOM_COM\":\"WIRY-AU-MONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84219,49.95579]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17784,\"INSEE_Comm\":\"80029\",\"nomCom\":\"Arrest\",\"NOM_COM\":\"ARREST\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61924,50.12883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17802,\"INSEE_Comm\":\"76107\",\"nomCom\":\"Bois-Guilbert\",\"NOM_COM\":\"BOIS-GUILBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41428,49.54027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17816,\"INSEE_Comm\":\"61443\",\"nomCom\":\"Saint-Paul\",\"NOM_COM\":\"SAINT-PAUL\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.63036,48.73917]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17853,\"INSEE_Comm\":\"61250\",\"nomCom\":\"Marchainville\",\"NOM_COM\":\"MARCHAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80749,48.59496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17854,\"INSEE_Comm\":\"61130\",\"nomCom\":\"Courgeo�t\",\"NOM_COM\":\"COURGEOUT\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49028,48.50818]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17858,\"INSEE_Comm\":\"14171\",\"nomCom\":\"Combray\",\"NOM_COM\":\"COMBRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4457,48.94614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17869,\"INSEE_Comm\":\"28315\",\"nomCom\":\"Revercourt\",\"NOM_COM\":\"REVERCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07729,48.72236]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17870,\"INSEE_Comm\":\"28159\",\"nomCom\":\"Framboisi�re\",\"NOM_COM\":\"LAFRAMBOISIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01589,48.59733]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17874,\"INSEE_Comm\":\"14181\",\"nomCom\":\"Cormelles-le-Royal\",\"NOM_COM\":\"CORMELLES-LE-ROYAL\",\"Statut\":\"Communesimple\",\"idCan\":\"1446\",\"nomCan\":\"Caen10eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":316,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32802,49.15489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17875,\"INSEE_Comm\":\"61117\",\"nomCom\":\"Cond�-sur-Sarthe\",\"NOM_COM\":\"CONDE-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":107,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03373,48.4339]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17878,\"INSEE_Comm\":\"28220\",\"nomCom\":\"Luisant\",\"NOM_COM\":\"LUISANT\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":266,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46928,48.42322]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17891,\"INSEE_Comm\":\"61437\",\"nomCom\":\"Saint-Ouen-de-la-Cour\",\"NOM_COM\":\"SAINT-OUEN-DE-LA-COUR\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58718,48.41174]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17896,\"INSEE_Comm\":\"61003\",\"nomCom\":\"Anceins\",\"NOM_COM\":\"ANCEINS\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4981,48.86668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17908,\"INSEE_Comm\":\"76013\",\"nomCom\":\"Angerville-la-Martel\",\"NOM_COM\":\"ANGERVILLE-LA-MARTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":86,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50169,49.76811]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17920,\"INSEE_Comm\":\"28330\",\"nomCom\":\"Saint-Cloud-en-Dunois\",\"NOM_COM\":\"SAINT-CLOUD-EN-DUNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46956,48.04576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17927,\"INSEE_Comm\":\"27560\",\"nomCom\":\"Saint-Luc\",\"NOM_COM\":\"SAINT-LUC\",\"Statut\":\"Communesimple\",\"idCan\":\"2717\",\"nomCan\":\"�vreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23336,48.97367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17935,\"INSEE_Comm\":\"27117\",\"nomCom\":\"Broglie\",\"NOM_COM\":\"BROGLIE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52583,49.00332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17939,\"INSEE_Comm\":\"61191\",\"nomCom\":\"Glos-la-Ferri�re\",\"NOM_COM\":\"GLOS-LA-FERRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59589,48.84854]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17940,\"INSEE_Comm\":\"27381\",\"nomCom\":\"Malouy\",\"NOM_COM\":\"MALOUY\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52871,49.12796]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17942,\"INSEE_Comm\":\"76705\",\"nomCom\":\"Tourville-la-Rivi�re\",\"NOM_COM\":\"TOURVILLE-LA-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7661\",\"nomCan\":\"Caudebec-l�s-Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":127,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09178,49.32745]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17950,\"INSEE_Comm\":\"95056\",\"nomCom\":\"Belloy-en-France\",\"NOM_COM\":\"BELLOY-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":110,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37176,49.09224]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17956,\"INSEE_Comm\":\"95610\",\"nomCom\":\"Th�m�ricourt\",\"NOM_COM\":\"THEMERICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90532,49.09038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17957,\"INSEE_Comm\":\"14160\",\"nomCom\":\"Cintheaux\",\"NOM_COM\":\"CINTHEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28369,49.06577]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17959,\"INSEE_Comm\":\"14691\",\"nomCom\":\"Tilly-la-Campagne\",\"NOM_COM\":\"TILLY-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.31076,49.11025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17960,\"INSEE_Comm\":\"61171\",\"nomCom\":\"Fontaine-les-Bassets\",\"NOM_COM\":\"FONTAINE-LES-BASSETS\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00291,48.86141]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17961,\"INSEE_Comm\":\"61019\",\"nomCom\":\"Avernes-sous-Exmes\",\"NOM_COM\":\"AVERNES-SOUS-EXMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20113,48.78831]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17962,\"INSEE_Comm\":\"61268\",\"nomCom\":\"M�nil-Hubert-en-Exmes\",\"NOM_COM\":\"MENIL-HUBERT-EN-EXMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23344,48.80184]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":17963,\"INSEE_Comm\":\"61479\",\"nomCom\":\"Tanques\",\"NOM_COM\":\"TANQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07405,48.68659]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18015,\"INSEE_Comm\":\"14198\",\"nomCom\":\"Cresseveuille\",\"NOM_COM\":\"CRESSEVEUILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.01185,49.23871]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18018,\"INSEE_Comm\":\"14552\",\"nomCom\":\"Ryes\",\"NOM_COM\":\"RYES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62791,49.31389]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18019,\"INSEE_Comm\":\"14676\",\"nomCom\":\"Sommervieu\",\"NOM_COM\":\"SOMMERVIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":108,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64588,49.29264]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18020,\"INSEE_Comm\":\"14732\",\"nomCom\":\"Vaux-sur-Aure\",\"NOM_COM\":\"VAUX-SUR-AURE\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.71005,49.30706]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18021,\"INSEE_Comm\":\"14569\",\"nomCom\":\"Sainte-Croix-sur-Mer\",\"NOM_COM\":\"SAINTE-CROIX-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.51005,49.31604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18022,\"INSEE_Comm\":\"14338\",\"nomCom\":\"Houlgate\",\"NOM_COM\":\"HOULGATE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":126,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0673,49.29714]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18023,\"INSEE_Comm\":\"14466\",\"nomCom\":\"Norolles\",\"NOM_COM\":\"NOROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23647,49.20324]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18024,\"INSEE_Comm\":\"27580\",\"nomCom\":\"Saint-Ouen-de-Thouberville\",\"NOM_COM\":\"SAINT-OUEN-DE-THOUBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":174,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89568,49.34908]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18025,\"INSEE_Comm\":\"76566\",\"nomCom\":\"Sainte-Austreberthe\",\"NOM_COM\":\"SAINTE-AUSTREBERTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97233,49.60171]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18026,\"INSEE_Comm\":\"76474\",\"nomCom\":\"Notre-Dame-de-Bondeville\",\"NOM_COM\":\"NOTRE-DAME-DE-BONDEVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":90,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05412,49.48761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18027,\"INSEE_Comm\":\"80284\",\"nomCom\":\"Esmery-Hallon\",\"NOM_COM\":\"ESMERY-HALLON\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02469,49.71133]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18028,\"INSEE_Comm\":\"80358\",\"nomCom\":\"Fresnoy-en-Chauss�e\",\"NOM_COM\":\"FRESNOY-EN-CHAUSSEE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58381,49.77226]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18029,\"INSEE_Comm\":\"80066\",\"nomCom\":\"Beaucourt-sur-l'Hallue\",\"NOM_COM\":\"BEAUCOURT-SUR-L'HALLUE\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42757,49.9982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18030,\"INSEE_Comm\":\"80753\",\"nomCom\":\"Thiepval\",\"NOM_COM\":\"THIEPVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68781,50.05978]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18031,\"INSEE_Comm\":\"60634\",\"nomCom\":\"Thieux\",\"NOM_COM\":\"THIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31,49.5438]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18032,\"INSEE_Comm\":\"60199\",\"nomCom\":\"Dom�liers\",\"NOM_COM\":\"DOMELIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16466,49.62853]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18033,\"INSEE_Comm\":\"60243\",\"nomCom\":\"Fontaine-Saint-Lucien\",\"NOM_COM\":\"FONTAINE-SAINT-LUCIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14697,49.50407]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18034,\"INSEE_Comm\":\"60428\",\"nomCom\":\"Mont-Saint-Adrien\",\"NOM_COM\":\"LEMONT-SAINT-ADRIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01359,49.44921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18035,\"INSEE_Comm\":\"60609\",\"nomCom\":\"Savignies\",\"NOM_COM\":\"SAVIGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6040\",\"nomCan\":\"Beauvais-Nord-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95764,49.46275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18036,\"INSEE_Comm\":\"80264\",\"nomCom\":\"�clusier-Vaux\",\"NOM_COM\":\"ECLUSIER-VAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79149,49.95111]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18037,\"INSEE_Comm\":\"60602\",\"nomCom\":\"Saint-Valery\",\"NOM_COM\":\"SAINT-VALERY\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72911,49.72491]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18039,\"INSEE_Comm\":\"60278\",\"nomCom\":\"Golancourt\",\"NOM_COM\":\"GOLANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06875,49.7033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18041,\"INSEE_Comm\":\"80271\",\"nomCom\":\"�pehy\",\"NOM_COM\":\"EPEHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.13299,50.00628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18054,\"INSEE_Comm\":\"80327\",\"nomCom\":\"Fontaine-sur-Maye\",\"NOM_COM\":\"FONTAINE-SUR-MAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93031,50.23662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18069,\"INSEE_Comm\":\"76203\",\"nomCom\":\"Croix-Mare\",\"NOM_COM\":\"CROIX-MARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83706,49.59782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18070,\"INSEE_Comm\":\"76001\",\"nomCom\":\"Allouville-Bellefosse\",\"NOM_COM\":\"ALLOUVILLE-BELLEFOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66544,49.59464]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18071,\"INSEE_Comm\":\"76406\",\"nomCom\":\"Maniquerville\",\"NOM_COM\":\"MANIQUERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34657,49.69448]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18072,\"INSEE_Comm\":\"76056\",\"nomCom\":\"Bardouville\",\"NOM_COM\":\"BARDOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92341,49.43363]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18073,\"INSEE_Comm\":\"76634\",\"nomCom\":\"Saint-Pierre-de-Manneville\",\"NOM_COM\":\"SAINT-PIERRE-DE-MANNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94143,49.39249]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18079,\"INSEE_Comm\":\"76489\",\"nomCom\":\"Oudalle\",\"NOM_COM\":\"OUDALLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28118,49.48513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18090,\"INSEE_Comm\":\"27187\",\"nomCom\":\"Criquebeuf-la-Campagne\",\"NOM_COM\":\"CRIQUEBEUF-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99759,49.19858]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18100,\"INSEE_Comm\":\"27349\",\"nomCom\":\"Illeville-sur-Montfort\",\"NOM_COM\":\"ILLEVILLE-SUR-MONTFORT\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":74,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7094,49.31913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18119,\"INSEE_Comm\":\"14508\",\"nomCom\":\"Plessis-Grimoult\",\"NOM_COM\":\"LEPLESSIS-GRIMOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.61158,48.96053]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18120,\"INSEE_Comm\":\"78185\",\"nomCom\":\"Courgent\",\"NOM_COM\":\"COURGENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65941,48.89572]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18121,\"INSEE_Comm\":\"28122\",\"nomCom\":\"Dammarie\",\"NOM_COM\":\"DAMMARIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49742,48.33782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18122,\"INSEE_Comm\":\"28176\",\"nomCom\":\"Gault-Saint-Denis\",\"NOM_COM\":\"LEGAULT-SAINT-DENIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48318,48.24614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18123,\"INSEE_Comm\":\"28140\",\"nomCom\":\"�pernon\",\"NOM_COM\":\"EPERNON\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":285,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68538,48.59411]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18132,\"INSEE_Comm\":\"61149\",\"nomCom\":\"�chalou\",\"NOM_COM\":\"ECHALOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.49232,48.72225]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18151,\"INSEE_Comm\":\"80125\",\"nomCom\":\"Boussicourt\",\"NOM_COM\":\"BOUSSICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57204,49.69937]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18152,\"INSEE_Comm\":\"80170\",\"nomCom\":\"Cantigny\",\"NOM_COM\":\"CANTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48995,49.66517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18153,\"INSEE_Comm\":\"80507\",\"nomCom\":\"Marcelcave\",\"NOM_COM\":\"MARCELCAVE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":73,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57065,49.84838]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18156,\"INSEE_Comm\":\"80432\",\"nomCom\":\"Herleville\",\"NOM_COM\":\"HERLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75112,49.86114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18157,\"INSEE_Comm\":\"80820\",\"nomCom\":\"Warloy-Baillon\",\"NOM_COM\":\"WARLOY-BAILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53081,50.01712]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18159,\"INSEE_Comm\":\"80069\",\"nomCom\":\"Beaumont-Hamel\",\"NOM_COM\":\"BEAUMONT-HAMEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6596,50.07656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18160,\"INSEE_Comm\":\"80809\",\"nomCom\":\"Vismes\",\"NOM_COM\":\"VISMES\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67087,50.00293]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18161,\"INSEE_Comm\":\"80611\",\"nomCom\":\"Oresmaux\",\"NOM_COM\":\"ORESMAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26891,49.76654]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18162,\"INSEE_Comm\":\"80423\",\"nomCom\":\"Havernas\",\"NOM_COM\":\"HAVERNAS\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23113,50.03587]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18191,\"INSEE_Comm\":\"76040\",\"nomCom\":\"Autigny\",\"NOM_COM\":\"AUTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85429,49.79583]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18208,\"INSEE_Comm\":\"61199\",\"nomCom\":\"Habloville\",\"NOM_COM\":\"HABLOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17809,48.79057]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18213,\"INSEE_Comm\":\"76536\",\"nomCom\":\"Roncherolles-sur-le-Vivier\",\"NOM_COM\":\"RONCHEROLLES-SUR-LE-VIVIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18202,49.46432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18232,\"INSEE_Comm\":\"78006\",\"nomCom\":\"Adainville\",\"NOM_COM\":\"ADAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66233,48.72015]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18234,\"INSEE_Comm\":\"95102\",\"nomCom\":\"Br�an�on\",\"NOM_COM\":\"BREANCON\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02292,49.14946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18235,\"INSEE_Comm\":\"76289\",\"nomCom\":\"Fr�ville\",\"NOM_COM\":\"FREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83307,49.56516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18240,\"INSEE_Comm\":\"61097\",\"nomCom\":\"Chapelle-Montligeon\",\"NOM_COM\":\"LACHAPELLE-MONTLIGEON\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65989,48.48543]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18254,\"INSEE_Comm\":\"27057\",\"nomCom\":\"Bernienville\",\"NOM_COM\":\"BERNIENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02878,49.07442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18259,\"INSEE_Comm\":\"28410\",\"nomCom\":\"Villampuy\",\"NOM_COM\":\"VILLAMPUY\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51122,48.04054]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18260,\"INSEE_Comm\":\"28327\",\"nomCom\":\"Saint-Bomer\",\"NOM_COM\":\"SAINT-BOMER\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8292,48.19496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18266,\"INSEE_Comm\":\"28241\",\"nomCom\":\"M�e\",\"NOM_COM\":\"LEMEE\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40914,47.9945]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18280,\"INSEE_Comm\":\"14280\",\"nomCom\":\"Formentin\",\"NOM_COM\":\"FORMENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13581,49.20308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18283,\"INSEE_Comm\":\"27364\",\"nomCom\":\"Launay\",\"NOM_COM\":\"LAUNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7373,49.10806]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18284,\"INSEE_Comm\":\"61167\",\"nomCom\":\"Fert�-Fr�nel\",\"NOM_COM\":\"LAFERTE-FRENEL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50854,48.83624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18286,\"INSEE_Comm\":\"27605\",\"nomCom\":\"Saint-Sylvestre-de-Cormeilles\",\"NOM_COM\":\"SAINT-SYLVESTRE-DE-CORMEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4209,49.24731]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18287,\"INSEE_Comm\":\"76057\",\"nomCom\":\"Barentin\",\"NOM_COM\":\"BARENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":441,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95707,49.54545]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18294,\"INSEE_Comm\":\"76141\",\"nomCom\":\"Br�aut�\",\"NOM_COM\":\"BREAUTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40377,49.6259]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18295,\"INSEE_Comm\":\"76300\",\"nomCom\":\"Gerville\",\"NOM_COM\":\"GERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32835,49.69797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18301,\"INSEE_Comm\":\"61128\",\"nomCom\":\"Courcerault\",\"NOM_COM\":\"COURCERAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66221,48.4394]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18302,\"INSEE_Comm\":\"61460\",\"nomCom\":\"Sap\",\"NOM_COM\":\"LESAP\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33897,48.88817]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18303,\"INSEE_Comm\":\"27329\",\"nomCom\":\"Hennezis\",\"NOM_COM\":\"HENNEZIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45636,49.19069]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18304,\"INSEE_Comm\":\"61127\",\"nomCom\":\"Courbe\",\"NOM_COM\":\"LACOURBE\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.18634,48.74757]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18306,\"INSEE_Comm\":\"14105\",\"nomCom\":\"Br�vi�re\",\"NOM_COM\":\"LABREVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16732,48.97606]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18307,\"INSEE_Comm\":\"61010\",\"nomCom\":\"Aubry-le-Panthou\",\"NOM_COM\":\"AUBRY-LE-PANTHOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22775,48.8546]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18328,\"INSEE_Comm\":\"78015\",\"nomCom\":\"Andr�sy\",\"NOM_COM\":\"ANDRESY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7839\",\"nomCan\":\"Andr�sy\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":225,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05026,48.98154]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18366,\"INSEE_Comm\":\"14682\",\"nomCom\":\"Surville\",\"NOM_COM\":\"SURVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22336,49.3029]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18367,\"INSEE_Comm\":\"76598\",\"nomCom\":\"Saint-L�ger-aux-Bois\",\"NOM_COM\":\"SAINT-LEGER-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61198,49.8298]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18368,\"INSEE_Comm\":\"76194\",\"nomCom\":\"Criquebeuf-en-Caux\",\"NOM_COM\":\"CRIQUEBEUF-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33305,49.73961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18369,\"INSEE_Comm\":\"76753\",\"nomCom\":\"Ymare\",\"NOM_COM\":\"YMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":66,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16708,49.34724]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18370,\"INSEE_Comm\":\"76514\",\"nomCom\":\"Qu�vreville-la-Poterie\",\"NOM_COM\":\"QUEVREVILLE-LA-POTERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18977,49.35449]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18371,\"INSEE_Comm\":\"76311\",\"nomCom\":\"Goupilli�res\",\"NOM_COM\":\"GOUPILLIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98327,49.58357]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18372,\"INSEE_Comm\":\"80656\",\"nomCom\":\"Quevauvillers\",\"NOM_COM\":\"QUEVAUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07414,49.81602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18373,\"INSEE_Comm\":\"80778\",\"nomCom\":\"Vauchelles-l�s-Domart\",\"NOM_COM\":\"VAUCHELLES-LES-DOMART\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05807,50.05657]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18374,\"INSEE_Comm\":\"80429\",\"nomCom\":\"H�nencourt\",\"NOM_COM\":\"HENENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56233,50.00366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18375,\"INSEE_Comm\":\"60205\",\"nomCom\":\"�lencourt\",\"NOM_COM\":\"ELENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89535,49.69319]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18376,\"INSEE_Comm\":\"60442\",\"nomCom\":\"Muidorge\",\"NOM_COM\":\"MUIDORGE\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13567,49.53307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18377,\"INSEE_Comm\":\"60598\",\"nomCom\":\"Saint-Sulpice\",\"NOM_COM\":\"SAINT-SULPICE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12272,49.34929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18378,\"INSEE_Comm\":\"60659\",\"nomCom\":\"Vaudancourt\",\"NOM_COM\":\"VAUDANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7614,49.22935]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18379,\"INSEE_Comm\":\"60044\",\"nomCom\":\"Balagny-sur-Th�rain\",\"NOM_COM\":\"BALAGNY-SUR-THERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3212,49.29752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18380,\"INSEE_Comm\":\"60073\",\"nomCom\":\"Blacourt\",\"NOM_COM\":\"BLACOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86303,49.4558]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18381,\"INSEE_Comm\":\"60303\",\"nomCom\":\"Hautbos\",\"NOM_COM\":\"HAUTBOS\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86981,49.62776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18382,\"INSEE_Comm\":\"60146\",\"nomCom\":\"Chepoix\",\"NOM_COM\":\"CHEPOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38064,49.60484]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18383,\"INSEE_Comm\":\"60284\",\"nomCom\":\"Grandfresnoy\",\"NOM_COM\":\"GRANDFRESNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6594,49.37624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18384,\"INSEE_Comm\":\"60540\",\"nomCom\":\"Rivecourt\",\"NOM_COM\":\"RIVECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73845,49.34609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18385,\"INSEE_Comm\":\"60166\",\"nomCom\":\"Coudun\",\"NOM_COM\":\"COUDUN\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79988,49.45811]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18386,\"INSEE_Comm\":\"60651\",\"nomCom\":\"Ully-Saint-Georges\",\"NOM_COM\":\"ULLY-SAINT-GEORGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":61,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27563,49.27437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18388,\"INSEE_Comm\":\"80434\",\"nomCom\":\"Hervilly\",\"NOM_COM\":\"HERVILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.11712,49.9313]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18390,\"INSEE_Comm\":\"60389\",\"nomCom\":\"Maucourt\",\"NOM_COM\":\"MAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07814,49.63258]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18407,\"INSEE_Comm\":\"80808\",\"nomCom\":\"Vironchaux\",\"NOM_COM\":\"VIRONCHAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8257,50.29819]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18433,\"INSEE_Comm\":\"76079\",\"nomCom\":\"B�nouville\",\"NOM_COM\":\"BENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24574,49.7176]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18434,\"INSEE_Comm\":\"76683\",\"nomCom\":\"Sotteville-sur-Mer\",\"NOM_COM\":\"SOTTEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82757,49.87321]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18435,\"INSEE_Comm\":\"76503\",\"nomCom\":\"Pissy-P�ville\",\"NOM_COM\":\"PISSY-POVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00135,49.53327]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18440,\"INSEE_Comm\":\"28146\",\"nomCom\":\"Faverolles\",\"NOM_COM\":\"FAVEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58422,48.68103]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18445,\"INSEE_Comm\":\"27224\",\"nomCom\":\"�preville-pr�s-le-Neubourg\",\"NOM_COM\":\"EPREVILLE-PRES-LE-NEUBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87628,49.12955]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18462,\"INSEE_Comm\":\"27616\",\"nomCom\":\"Saussaye\",\"NOM_COM\":\"LASAUSSAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98618,49.25454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18463,\"INSEE_Comm\":\"27372\",\"nomCom\":\"Longchamps\",\"NOM_COM\":\"LONGCHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62115,49.35797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18464,\"INSEE_Comm\":\"27214\",\"nomCom\":\"�couis\",\"NOM_COM\":\"ECOUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43,49.30669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18465,\"INSEE_Comm\":\"27456\",\"nomCom\":\"Pinterville\",\"NOM_COM\":\"PINTERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19164,49.19188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18466,\"INSEE_Comm\":\"27168\",\"nomCom\":\"Connelles\",\"NOM_COM\":\"CONNELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2762,49.26048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18477,\"INSEE_Comm\":\"76347\",\"nomCom\":\"Hautot-le-Vatois\",\"NOM_COM\":\"HAUTOT-LE-VATOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70273,49.64641]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18478,\"INSEE_Comm\":\"78104\",\"nomCom\":\"Breuil-Bois-Robert\",\"NOM_COM\":\"BREUIL-BOIS-ROBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71472,48.9436]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18479,\"INSEE_Comm\":\"28148\",\"nomCom\":\"Favril\",\"NOM_COM\":\"LEFAVRIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11126,48.46022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18488,\"INSEE_Comm\":\"14483\",\"nomCom\":\"Ouffi�res\",\"NOM_COM\":\"OUFFIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48898,49.02485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18490,\"INSEE_Comm\":\"60645\",\"nomCom\":\"Trie-la-Ville\",\"NOM_COM\":\"TRIE-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84213,49.28592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18499,\"INSEE_Comm\":\"95094\",\"nomCom\":\"Bouqueval\",\"NOM_COM\":\"BOUQUEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42997,49.02234]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18501,\"INSEE_Comm\":\"95430\",\"nomCom\":\"Montsoult\",\"NOM_COM\":\"MONTSOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":83,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30382,49.07158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18504,\"INSEE_Comm\":\"78372\",\"nomCom\":\"Marly-le-Roi\",\"NOM_COM\":\"MARLY-LE-ROI\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7813\",\"nomCan\":\"Marly-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":321,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09125,48.86501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18506,\"INSEE_Comm\":\"80783\",\"nomCom\":\"Vaux-Marquenneville\",\"NOM_COM\":\"VAUX-MARQUENNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78443,49.98852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18508,\"INSEE_Comm\":\"80335\",\"nomCom\":\"Foucaucourt-en-Santerre\",\"NOM_COM\":\"FOUCAUCOURT-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76976,49.87668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18510,\"INSEE_Comm\":\"80121\",\"nomCom\":\"Bouillancourt-la-Bataille\",\"NOM_COM\":\"BOUILLANCOURT-LA-BATAILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52668,49.69699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18511,\"INSEE_Comm\":\"80790\",\"nomCom\":\"Verpilli�res\",\"NOM_COM\":\"VERPILLIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82381,49.66704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18512,\"INSEE_Comm\":\"80147\",\"nomCom\":\"Buigny-l'Abb�\",\"NOM_COM\":\"BUIGNY-L'ABBE\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94455,50.09707]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18515,\"INSEE_Comm\":\"80691\",\"nomCom\":\"Saigneville\",\"NOM_COM\":\"SAIGNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71616,50.13935]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18549,\"INSEE_Comm\":\"14411\",\"nomCom\":\"Meslay\",\"NOM_COM\":\"MESLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39245,48.95395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18551,\"INSEE_Comm\":\"14625\",\"nomCom\":\"Saint-Martin-de-la-Lieue\",\"NOM_COM\":\"SAINT-MARTIN-DE-LA-LIEUE\",\"Statut\":\"Communesimple\",\"idCan\":\"1422\",\"nomCan\":\"Lisieux2eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22434,49.1102]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18574,\"INSEE_Comm\":\"14213\",\"nomCom\":\"Curcy-sur-Orne\",\"NOM_COM\":\"CURCY-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50689,49.0076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18587,\"INSEE_Comm\":\"14260\",\"nomCom\":\"Fauguernon\",\"NOM_COM\":\"FAUGUERNON\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26856,49.18893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18599,\"INSEE_Comm\":\"61258\",\"nomCom\":\"M�le-sur-Sarthe\",\"NOM_COM\":\"LEMELE-SUR-SARTHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3525,48.51119]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18611,\"INSEE_Comm\":\"76676\",\"nomCom\":\"Sigy-en-Bray\",\"NOM_COM\":\"SIGY-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46692,49.53356]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18623,\"INSEE_Comm\":\"61140\",\"nomCom\":\"Crulai\",\"NOM_COM\":\"CRULAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65914,48.69589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18624,\"INSEE_Comm\":\"27345\",\"nomCom\":\"Houssaye\",\"NOM_COM\":\"LAHOUSSAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80046,48.99815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18627,\"INSEE_Comm\":\"27278\",\"nomCom\":\"Garennes-sur-Eure\",\"NOM_COM\":\"GARENNES-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43367,48.90916]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18630,\"INSEE_Comm\":\"27342\",\"nomCom\":\"Houetteville\",\"NOM_COM\":\"HOUETTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09038,49.12939]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18641,\"INSEE_Comm\":\"78337\",\"nomCom\":\"Limetz-Villez\",\"NOM_COM\":\"LIMETZ-VILLEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":85,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55068,49.05981]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18642,\"INSEE_Comm\":\"27540\",\"nomCom\":\"Sainte-Genevi�ve-l�s-Gasny\",\"NOM_COM\":\"SAINTE-GENEVIEVE-LES-GASNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57047,49.08227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18657,\"INSEE_Comm\":\"76270\",\"nomCom\":\"Fontaine-la-Mallet\",\"NOM_COM\":\"FONTAINE-LA-MALLET\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":87,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14057,49.53854]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18667,\"INSEE_Comm\":\"80527\",\"nomCom\":\"M�neslies\",\"NOM_COM\":\"MENESLIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49367,50.05801]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18670,\"INSEE_Comm\":\"61154\",\"nomCom\":\"Eperrais\",\"NOM_COM\":\"EPERRAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5464,48.41528]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18676,\"INSEE_Comm\":\"27623\",\"nomCom\":\"Surtauville\",\"NOM_COM\":\"SURTAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05435,49.19817]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18678,\"INSEE_Comm\":\"61071\",\"nomCom\":\"Camembert\",\"NOM_COM\":\"CAMEMBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1718,48.89164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18679,\"INSEE_Comm\":\"61470\",\"nomCom\":\"Serans\",\"NOM_COM\":\"SERANS\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15091,48.73166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18680,\"INSEE_Comm\":\"14498\",\"nomCom\":\"Pertheville-Ners\",\"NOM_COM\":\"PERTHEVILLE-NERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10935,48.87576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18683,\"INSEE_Comm\":\"14634\",\"nomCom\":\"Saint-Michel-de-Livet\",\"NOM_COM\":\"SAINT-MICHEL-DE-LIVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13216,49.01562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18684,\"INSEE_Comm\":\"61512\",\"nomCom\":\"Yveteaux\",\"NOM_COM\":\"LESYVETEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.27023,48.70893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18720,\"INSEE_Comm\":\"95328\",\"nomCom\":\"Labbeville\",\"NOM_COM\":\"LABBEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13535,49.13369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18722,\"INSEE_Comm\":\"95119\",\"nomCom\":\"Buhy\",\"NOM_COM\":\"BUHY\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70239,49.19186]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18724,\"INSEE_Comm\":\"60363\",\"nomCom\":\"Lierville\",\"NOM_COM\":\"LIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8909,49.1974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18727,\"INSEE_Comm\":\"14668\",\"nomCom\":\"Saonnet\",\"NOM_COM\":\"SAONNET\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.88102,49.2722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18746,\"INSEE_Comm\":\"14391\",\"nomCom\":\"Maisons\",\"NOM_COM\":\"MAISONS\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75292,49.31619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18747,\"INSEE_Comm\":\"14400\",\"nomCom\":\"Manoir\",\"NOM_COM\":\"LEMANOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.59926,49.2889]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18748,\"INSEE_Comm\":\"14229\",\"nomCom\":\"Dozul�\",\"NOM_COM\":\"DOZULE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04503,49.22878]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18749,\"INSEE_Comm\":\"76746\",\"nomCom\":\"Vinnemerville\",\"NOM_COM\":\"VINNEMERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55599,49.80759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18750,\"INSEE_Comm\":\"76268\",\"nomCom\":\"Fongueusemare\",\"NOM_COM\":\"FONGUEUSEMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30935,49.67488]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18751,\"INSEE_Comm\":\"76189\",\"nomCom\":\"Crasville-la-Mallet\",\"NOM_COM\":\"CRASVILLE-LA-MALLET\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71659,49.80502]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18752,\"INSEE_Comm\":\"76630\",\"nomCom\":\"Saint-Ouen-sous-Bailly\",\"NOM_COM\":\"SAINT-OUEN-SOUS-BAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30095,49.90295]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18753,\"INSEE_Comm\":\"76363\",\"nomCom\":\"Hodeng-au-Bosc\",\"NOM_COM\":\"HODENG-AU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69788,49.87191]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18754,\"INSEE_Comm\":\"80300\",\"nomCom\":\"Falvy\",\"NOM_COM\":\"FALVY\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96265,49.82269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18755,\"INSEE_Comm\":\"80366\",\"nomCom\":\"Fricourt\",\"NOM_COM\":\"FRICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71518,49.99638]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18756,\"INSEE_Comm\":\"80828\",\"nomCom\":\"Woirel\",\"NOM_COM\":\"WOIREL\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81989,49.95891]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18757,\"INSEE_Comm\":\"60114\",\"nomCom\":\"Buicourt\",\"NOM_COM\":\"BUICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81531,49.5342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18758,\"INSEE_Comm\":\"60222\",\"nomCom\":\"Essuiles\",\"NOM_COM\":\"ESSUILES\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28169,49.48017]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18759,\"INSEE_Comm\":\"60160\",\"nomCom\":\"Conchy-les-Pots\",\"NOM_COM\":\"CONCHY-LES-POTS\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73631,49.60732]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18760,\"INSEE_Comm\":\"80662\",\"nomCom\":\"Ramburelles\",\"NOM_COM\":\"RAMBURELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7093,49.96727]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18761,\"INSEE_Comm\":\"80316\",\"nomCom\":\"Flesselles\",\"NOM_COM\":\"FLESSELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":130,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25941,50.00325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18800,\"INSEE_Comm\":\"76084\",\"nomCom\":\"Bertreville\",\"NOM_COM\":\"BERTREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58008,49.76662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18801,\"INSEE_Comm\":\"76318\",\"nomCom\":\"Grand-Camp\",\"NOM_COM\":\"GRAND-CAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60058,49.55161]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18802,\"INSEE_Comm\":\"76267\",\"nomCom\":\"Folleti�re\",\"NOM_COM\":\"LAFOLLETIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79247,49.57129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18803,\"INSEE_Comm\":\"76360\",\"nomCom\":\"Heugleville-sur-Scie\",\"NOM_COM\":\"HEUGLEVILLE-SUR-SCIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0999,49.73479]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18820,\"INSEE_Comm\":\"27410\",\"nomCom\":\"Miserey\",\"NOM_COM\":\"MISEREY\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26109,49.01971]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18821,\"INSEE_Comm\":\"27324\",\"nomCom\":\"H�b�court\",\"NOM_COM\":\"HEBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72197,49.35723]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18832,\"INSEE_Comm\":\"27365\",\"nomCom\":\"L�ry\",\"NOM_COM\":\"LERY\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19519,49.28757]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18837,\"INSEE_Comm\":\"14269\",\"nomCom\":\"Fierville-les-Parcs\",\"NOM_COM\":\"FIERVILLE-LES-PARCS\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23066,49.24385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18841,\"INSEE_Comm\":\"78299\",\"nomCom\":\"Hardricourt\",\"NOM_COM\":\"HARDRICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":97,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8873,49.01093]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18842,\"INSEE_Comm\":\"76543\",\"nomCom\":\"Rouville\",\"NOM_COM\":\"ROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49833,49.62669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18843,\"INSEE_Comm\":\"78385\",\"nomCom\":\"M�nerville\",\"NOM_COM\":\"MENERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59611,48.95668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18844,\"INSEE_Comm\":\"28325\",\"nomCom\":\"Saint-Aubin-des-Bois\",\"NOM_COM\":\"SAINT-AUBIN-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2830\",\"nomCan\":\"Mainvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34544,48.46314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18852,\"INSEE_Comm\":\"14257\",\"nomCom\":\"�vrecy\",\"NOM_COM\":\"EVRECY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":137,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50178,49.09403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18853,\"INSEE_Comm\":\"78465\",\"nomCom\":\"Orgerus\",\"NOM_COM\":\"ORGERUS\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6962,48.83797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18854,\"INSEE_Comm\":\"78117\",\"nomCom\":\"Buc\",\"NOM_COM\":\"BUC\",\"Statut\":\"Communesimple\",\"idCan\":\"7829\",\"nomCan\":\"Versailles-Sud\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":68,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12394,48.77183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18855,\"INSEE_Comm\":\"14096\",\"nomCom\":\"Br�moy\",\"NOM_COM\":\"BREMOY\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.78036,48.99828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18864,\"INSEE_Comm\":\"80242\",\"nomCom\":\"Domart-sur-la-Luce\",\"NOM_COM\":\"DOMART-SUR-LA-LUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4883,49.82611]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18867,\"INSEE_Comm\":\"80767\",\"nomCom\":\"Translay\",\"NOM_COM\":\"LETRANSLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66433,49.97382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18885,\"INSEE_Comm\":\"61030\",\"nomCom\":\"Bazoque\",\"NOM_COM\":\"LABAZOQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"6115\",\"nomCan\":\"Flers-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.59863,48.7842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18918,\"INSEE_Comm\":\"27680\",\"nomCom\":\"Verneusses\",\"NOM_COM\":\"VERNEUSSES\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42537,48.90946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18929,\"INSEE_Comm\":\"28254\",\"nomCom\":\"Mittainvilliers\",\"NOM_COM\":\"MITTAINVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31333,48.49961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18932,\"INSEE_Comm\":\"61509\",\"nomCom\":\"Vingt-Hanaps\",\"NOM_COM\":\"VINGT-HANAPS\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.12671,48.52271]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18936,\"INSEE_Comm\":\"27557\",\"nomCom\":\"Saint-L�ger-de-R�tes\",\"NOM_COM\":\"SAINT-LEGER-DE-ROTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66229,49.11266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18945,\"INSEE_Comm\":\"76572\",\"nomCom\":\"Saint-Denis-d'Aclon\",\"NOM_COM\":\"SAINT-DENIS-D'ACLON\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94315,49.86328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18950,\"INSEE_Comm\":\"61398\",\"nomCom\":\"Saint-Germain-le-Vieux\",\"NOM_COM\":\"SAINT-GERMAIN-LE-VIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31142,48.61061]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18959,\"INSEE_Comm\":\"27002\",\"nomCom\":\"Acon\",\"NOM_COM\":\"ACON\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10493,48.76946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18961,\"INSEE_Comm\":\"27055\",\"nomCom\":\"B�rengeville-la-Campagne\",\"NOM_COM\":\"BERENGEVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05847,49.11339]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18980,\"INSEE_Comm\":\"27301\",\"nomCom\":\"Grossoeuvre\",\"NOM_COM\":\"GROSSOEUVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18649,48.94019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18981,\"INSEE_Comm\":\"76692\",\"nomCom\":\"Thiouville\",\"NOM_COM\":\"THIOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62762,49.68789]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18991,\"INSEE_Comm\":\"76211\",\"nomCom\":\"Dancourt\",\"NOM_COM\":\"DANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53871,49.90097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":18995,\"INSEE_Comm\":\"27398\",\"nomCom\":\"Menneval\",\"NOM_COM\":\"MENNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":90,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62214,49.10188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19014,\"INSEE_Comm\":\"61507\",\"nomCom\":\"Villiers-sous-Mortagne\",\"NOM_COM\":\"VILLIERS-SOUS-MORTAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59308,48.53921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19015,\"INSEE_Comm\":\"95059\",\"nomCom\":\"Berville\",\"NOM_COM\":\"BERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07086,49.1922]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19018,\"INSEE_Comm\":\"14043\",\"nomCom\":\"Barou-en-Auge\",\"NOM_COM\":\"BAROU-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03861,48.92975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19020,\"INSEE_Comm\":\"61487\",\"nomCom\":\"Torchamp\",\"NOM_COM\":\"TORCHAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67476,48.53961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19021,\"INSEE_Comm\":\"14210\",\"nomCom\":\"Croupte\",\"NOM_COM\":\"LACROUPTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.2792,49.02393]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19045,\"INSEE_Comm\":\"14111\",\"nomCom\":\"Buc�els\",\"NOM_COM\":\"BUCEELS\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.63961,49.18695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19047,\"INSEE_Comm\":\"76512\",\"nomCom\":\"Puisenval\",\"NOM_COM\":\"PUISENVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.462,49.87881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19071,\"INSEE_Comm\":\"76037\",\"nomCom\":\"Auquemesnil\",\"NOM_COM\":\"AUQUEMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33519,49.95214]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19074,\"INSEE_Comm\":\"14026\",\"nomCom\":\"Audrieu\",\"NOM_COM\":\"AUDRIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":94,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60433,49.20472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19075,\"INSEE_Comm\":\"14692\",\"nomCom\":\"Tilly-sur-Seulles\",\"NOM_COM\":\"TILLY-SUR-SEULLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":141,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62339,49.17188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19076,\"INSEE_Comm\":\"76126\",\"nomCom\":\"Bosc-Mesnil\",\"NOM_COM\":\"BOSC-MESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3483,49.66871]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19077,\"INSEE_Comm\":\"76613\",\"nomCom\":\"Saint-Martin-aux-Buneaux\",\"NOM_COM\":\"SAINT-MARTIN-AUX-BUNEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55057,49.82705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19078,\"INSEE_Comm\":\"76726\",\"nomCom\":\"Vattetot-sur-Mer\",\"NOM_COM\":\"VATTETOT-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28631,49.72274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19079,\"INSEE_Comm\":\"76165\",\"nomCom\":\"Caudebec-l�s-Elbeuf\",\"NOM_COM\":\"CAUDEBEC-LES-ELBEUF\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7661\",\"nomCan\":\"Caudebec-l�s-Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":367,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02574,49.28211]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19080,\"INSEE_Comm\":\"27307\",\"nomCom\":\"Guiseniers\",\"NOM_COM\":\"GUISENIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47846,49.21419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19081,\"INSEE_Comm\":\"76243\",\"nomCom\":\"Ernemont-sur-Buchy\",\"NOM_COM\":\"ERNEMONT-SUR-BUCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36059,49.54097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19082,\"INSEE_Comm\":\"76338\",\"nomCom\":\"Halloti�re\",\"NOM_COM\":\"LAHALLOTIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47595,49.52175]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19083,\"INSEE_Comm\":\"76643\",\"nomCom\":\"Saint-Quentin-au-Bosc\",\"NOM_COM\":\"SAINT-QUENTIN-AU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32469,49.93379]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19084,\"INSEE_Comm\":\"80729\",\"nomCom\":\"Sauvillers-Mongival\",\"NOM_COM\":\"SAUVILLERS-MONGIVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4662,49.71979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19085,\"INSEE_Comm\":\"60453\",\"nomCom\":\"Neuville-d'Aumont\",\"NOM_COM\":\"LANEUVILLE-D'AUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1007,49.31733]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19086,\"INSEE_Comm\":\"60221\",\"nomCom\":\"Esquennoy\",\"NOM_COM\":\"ESQUENNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26905,49.65511]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19087,\"INSEE_Comm\":\"60019\",\"nomCom\":\"Antheuil-Portes\",\"NOM_COM\":\"ANTHEUIL-PORTES\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73374,49.50046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19088,\"INSEE_Comm\":\"60323\",\"nomCom\":\"Janville\",\"NOM_COM\":\"JANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6009\",\"nomCan\":\"Compi�gne-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85883,49.45395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19089,\"INSEE_Comm\":\"60232\",\"nomCom\":\"Ferri�res\",\"NOM_COM\":\"FERRIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51318,49.5891]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19090,\"INSEE_Comm\":\"60194\",\"nomCom\":\"Dargies\",\"NOM_COM\":\"DARGIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98094,49.6992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19105,\"INSEE_Comm\":\"80427\",\"nomCom\":\"Hem-Hardinval\",\"NOM_COM\":\"HEM-HARDINVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28736,50.1531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19108,\"INSEE_Comm\":\"80756\",\"nomCom\":\"Thi�vres\",\"NOM_COM\":\"THIEVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46139,50.11839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19124,\"INSEE_Comm\":\"76518\",\"nomCom\":\"Raffetot\",\"NOM_COM\":\"RAFFETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52253,49.60161]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19125,\"INSEE_Comm\":\"76197\",\"nomCom\":\"Criquetot-sur-Longueville\",\"NOM_COM\":\"CRIQUETOT-SUR-LONGUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07573,49.78166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19126,\"INSEE_Comm\":\"76302\",\"nomCom\":\"Goderville\",\"NOM_COM\":\"GODERVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":229,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35522,49.64433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19136,\"INSEE_Comm\":\"27401\",\"nomCom\":\"Mesnil-Fuguet\",\"NOM_COM\":\"LEMESNIL-FUGUET\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11406,49.07309]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19137,\"INSEE_Comm\":\"27140\",\"nomCom\":\"Chambray\",\"NOM_COM\":\"CHAMBRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31943,49.08]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19140,\"INSEE_Comm\":\"80397\",\"nomCom\":\"Gueudecourt\",\"NOM_COM\":\"GUEUDECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84339,50.0601]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19156,\"INSEE_Comm\":\"61294\",\"nomCom\":\"Mortr�e\",\"NOM_COM\":\"MORTREE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08015,48.63849]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19159,\"INSEE_Comm\":\"28219\",\"nomCom\":\"Luigny\",\"NOM_COM\":\"LUIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02792,48.23665]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19163,\"INSEE_Comm\":\"80214\",\"nomCom\":\"Coullemelle\",\"NOM_COM\":\"COULLEMELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42528,49.67006]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19170,\"INSEE_Comm\":\"76487\",\"nomCom\":\"Osmoy-Saint-Valery\",\"NOM_COM\":\"OSMOY-SAINT-VALERY\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30358,49.79708]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19191,\"INSEE_Comm\":\"28209\",\"nomCom\":\"L�ves\",\"NOM_COM\":\"LEVES\",\"Statut\":\"Communesimple\",\"idCan\":\"2830\",\"nomCan\":\"Mainvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":692,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46932,48.47997]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19200,\"INSEE_Comm\":\"14481\",\"nomCom\":\"Oubeaux\",\"NOM_COM\":\"LESOUBEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.05251,49.28468]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19209,\"INSEE_Comm\":\"28113\",\"nomCom\":\"Coulombs\",\"NOM_COM\":\"COULOMBS\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":59,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55323,48.65589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19219,\"INSEE_Comm\":\"76033\",\"nomCom\":\"Auberville-la-Renault\",\"NOM_COM\":\"AUBERVILLE-LA-RENAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37918,49.68596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19232,\"INSEE_Comm\":\"28065\",\"nomCom\":\"Bullainville\",\"NOM_COM\":\"BULLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50702,48.1704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19255,\"INSEE_Comm\":\"76295\",\"nomCom\":\"Gaillefontaine\",\"NOM_COM\":\"GAILLEFONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62675,49.65663]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19289,\"INSEE_Comm\":\"80241\",\"nomCom\":\"Domart-en-Ponthieu\",\"NOM_COM\":\"DOMART-EN-PONTHIEU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12319,50.07576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19295,\"INSEE_Comm\":\"61474\",\"nomCom\":\"Silly-en-Gouffern\",\"NOM_COM\":\"SILLY-EN-GOUFFERN\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.06518,48.75169]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19300,\"INSEE_Comm\":\"60158\",\"nomCom\":\"Coivrel\",\"NOM_COM\":\"COIVREL\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55109,49.555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19350,\"INSEE_Comm\":\"61047\",\"nomCom\":\"Bocquenc�\",\"NOM_COM\":\"BOCQUENCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45639,48.83446]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19351,\"INSEE_Comm\":\"61193\",\"nomCom\":\"Gonfri�re\",\"NOM_COM\":\"LAGONFRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49037,48.81568]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19358,\"INSEE_Comm\":\"14758\",\"nomCom\":\"Villons-les-Buissons\",\"NOM_COM\":\"VILLONS-LES-BUISSONS\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41154,49.23625]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19359,\"INSEE_Comm\":\"61172\",\"nomCom\":\"Fontenai-les-Louvets\",\"NOM_COM\":\"FONTENAI-LES-LOUVETS\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00848,48.53277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19369,\"INSEE_Comm\":\"76271\",\"nomCom\":\"Fontaine-le-Bourg\",\"NOM_COM\":\"FONTAINE-LE-BOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":72,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15736,49.57078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19393,\"INSEE_Comm\":\"80498\",\"nomCom\":\"Mailly-Maillet\",\"NOM_COM\":\"MAILLY-MAILLET\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59367,50.08023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19409,\"INSEE_Comm\":\"27465\",\"nomCom\":\"Plessis-H�bert\",\"NOM_COM\":\"LEPLESSIS-HEBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36286,48.98165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19428,\"INSEE_Comm\":\"95446\",\"nomCom\":\"Nesles-la-Vall�e\",\"NOM_COM\":\"NESLES-LA-VALLEE\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17176,49.12604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19431,\"INSEE_Comm\":\"61183\",\"nomCom\":\"G�pr�e\",\"NOM_COM\":\"GAPREE\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29364,48.62448]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19449,\"INSEE_Comm\":\"76288\",\"nomCom\":\"Freulleville\",\"NOM_COM\":\"FREULLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21669,49.81881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19450,\"INSEE_Comm\":\"60581\",\"nomCom\":\"Saint-Just-en-Chauss�e\",\"NOM_COM\":\"SAINT-JUST-EN-CHAUSSEE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":298,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41775,49.51126]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19451,\"INSEE_Comm\":\"60592\",\"nomCom\":\"Saint-Pierre-es-Champs\",\"NOM_COM\":\"SAINT-PIERRE-ES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74083,49.42277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19462,\"INSEE_Comm\":\"76450\",\"nomCom\":\"Montroty\",\"NOM_COM\":\"MONTROTY\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66162,49.43165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19463,\"INSEE_Comm\":\"61033\",\"nomCom\":\"Beaulandais\",\"NOM_COM\":\"BEAULANDAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53458,48.53506]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19471,\"INSEE_Comm\":\"80528\",\"nomCom\":\"M�r�aucourt\",\"NOM_COM\":\"MEREAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93107,49.73026]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19495,\"INSEE_Comm\":\"14672\",\"nomCom\":\"Sept-Vents\",\"NOM_COM\":\"SEPT-VENTS\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83769,49.06629]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19521,\"INSEE_Comm\":\"80544\",\"nomCom\":\"M�zerolles\",\"NOM_COM\":\"MEZEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22657,50.18549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19532,\"INSEE_Comm\":\"14509\",\"nomCom\":\"Plumetot\",\"NOM_COM\":\"PLUMETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36146,49.27755]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19534,\"INSEE_Comm\":\"76605\",\"nomCom\":\"Sainte-Marguerite-sur-Mer\",\"NOM_COM\":\"SAINTE-MARGUERITE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95522,49.90656]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19544,\"INSEE_Comm\":\"76439\",\"nomCom\":\"Mirville\",\"NOM_COM\":\"MIRVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44052,49.60553]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19554,\"INSEE_Comm\":\"80668\",\"nomCom\":\"Remiencourt\",\"NOM_COM\":\"REMIENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38496,49.77848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19569,\"INSEE_Comm\":\"76209\",\"nomCom\":\"Dampierre-en-Bray\",\"NOM_COM\":\"DAMPIERRE-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66314,49.53459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19581,\"INSEE_Comm\":\"76469\",\"nomCom\":\"Noll�val\",\"NOM_COM\":\"NOLLEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48176,49.49423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19589,\"INSEE_Comm\":\"61184\",\"nomCom\":\"Gauville\",\"NOM_COM\":\"GAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54034,48.81958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19593,\"INSEE_Comm\":\"95682\",\"nomCom\":\"Villiers-le-Sec\",\"NOM_COM\":\"VILLIERS-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38689,49.07431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19594,\"INSEE_Comm\":\"61370\",\"nomCom\":\"Saint-Brice\",\"NOM_COM\":\"SAINT-BRICE\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64149,48.5501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19598,\"INSEE_Comm\":\"14078\",\"nomCom\":\"Blay\",\"NOM_COM\":\"BLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83615,49.28012]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19602,\"INSEE_Comm\":\"14225\",\"nomCom\":\"Dives-sur-Mer\",\"NOM_COM\":\"DIVES-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":363,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08921,49.28281]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19603,\"INSEE_Comm\":\"60565\",\"nomCom\":\"Saint-Andr�-Farivillers\",\"NOM_COM\":\"SAINT-ANDRE-FARIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30066,49.58205]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19620,\"INSEE_Comm\":\"80391\",\"nomCom\":\"Grivillers\",\"NOM_COM\":\"GRIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70399,49.65927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19622,\"INSEE_Comm\":\"27415\",\"nomCom\":\"Morainville-Jouveaux\",\"NOM_COM\":\"MORAINVILLE-JOUVEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44398,49.2227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19636,\"INSEE_Comm\":\"80197\",\"nomCom\":\"Cizancourt\",\"NOM_COM\":\"CIZANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91813,49.84013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19651,\"INSEE_Comm\":\"28196\",\"nomCom\":\"Illiers-Combray\",\"NOM_COM\":\"ILLIERS-COMBRAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":96,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22694,48.30329]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19663,\"INSEE_Comm\":\"14621\",\"nomCom\":\"Saint-Martin-de-Bienfaite-la-Cressonni�re\",\"NOM_COM\":\"SAINT-MARTIN-DE-BIENFAITE-LA-CRESSONNIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35284,49.03282]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19670,\"INSEE_Comm\":\"78262\",\"nomCom\":\"Galluis\",\"NOM_COM\":\"GALLUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7911,48.79756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19674,\"INSEE_Comm\":\"76184\",\"nomCom\":\"Colmesnil-Manneville\",\"NOM_COM\":\"COLMESNIL-MANNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02877,49.84748]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19711,\"INSEE_Comm\":\"61327\",\"nomCom\":\"Pervench�res\",\"NOM_COM\":\"PERVENCHERES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41119,48.44379]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19717,\"INSEE_Comm\":\"27511\",\"nomCom\":\"Saint-Aubin-d'�crosville\",\"NOM_COM\":\"SAINT-AUBIN-D'ECROSVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98692,49.14312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19719,\"INSEE_Comm\":\"28156\",\"nomCom\":\"Fontaine-Simon\",\"NOM_COM\":\"FONTAINE-SIMON\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99253,48.50887]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19734,\"INSEE_Comm\":\"76719\",\"nomCom\":\"Valmont\",\"NOM_COM\":\"VALMONT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51264,49.73997]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19737,\"INSEE_Comm\":\"95491\",\"nomCom\":\"Plessis-Bouchard\",\"NOM_COM\":\"LEPLESSIS-BOUCHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"9528\",\"nomCan\":\"Beauchamp\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":241,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23402,49.00328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19744,\"INSEE_Comm\":\"14021\",\"nomCom\":\"Arromanches-les-Bains\",\"NOM_COM\":\"ARROMANCHES-LES-BAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62062,49.3358]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19755,\"INSEE_Comm\":\"78245\",\"nomCom\":\"Fontenay-Mauvoisin\",\"NOM_COM\":\"FONTENAY-MAUVOISIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64778,48.96109]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19756,\"INSEE_Comm\":\"78401\",\"nomCom\":\"Meulan-en-Yvelines\",\"NOM_COM\":\"MEULAN-EN-YVELINES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":243,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91318,49.00642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19757,\"INSEE_Comm\":\"28206\",\"nomCom\":\"Laons\",\"NOM_COM\":\"LAONS\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18635,48.69803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19758,\"INSEE_Comm\":\"28006\",\"nomCom\":\"Amilly\",\"NOM_COM\":\"AMILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2829\",\"nomCan\":\"Luc�\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4066,48.4423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19764,\"INSEE_Comm\":\"14461\",\"nomCom\":\"Mutr�cy\",\"NOM_COM\":\"MUTRECY\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42245,49.06435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19772,\"INSEE_Comm\":\"80547\",\"nomCom\":\"Millencourt\",\"NOM_COM\":\"MILLENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59746,50.00121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19776,\"INSEE_Comm\":\"95058\",\"nomCom\":\"Bernes-sur-Oise\",\"NOM_COM\":\"BERNES-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":97,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30128,49.16541]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19780,\"INSEE_Comm\":\"14442\",\"nomCom\":\"Montchamp\",\"NOM_COM\":\"MONTCHAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75482,48.91514]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19783,\"INSEE_Comm\":\"80027\",\"nomCom\":\"Armancourt\",\"NOM_COM\":\"ARMANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71294,49.67676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19786,\"INSEE_Comm\":\"80005\",\"nomCom\":\"Agenville\",\"NOM_COM\":\"AGENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10777,50.1718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19830,\"INSEE_Comm\":\"76285\",\"nomCom\":\"Fresne-le-Plan\",\"NOM_COM\":\"FRESNE-LE-PLAN\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29655,49.41382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19833,\"INSEE_Comm\":\"76635\",\"nomCom\":\"Saint-Pierre-des-Jonqui�res\",\"NOM_COM\":\"SAINT-PIERRE-DES-JONQUIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.451,49.84858]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19869,\"INSEE_Comm\":\"14207\",\"nomCom\":\"Croisilles\",\"NOM_COM\":\"CROISILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.45203,49.00344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19871,\"INSEE_Comm\":\"28311\",\"nomCom\":\"Puiset\",\"NOM_COM\":\"LEPUISET\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86245,48.21344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19900,\"INSEE_Comm\":\"61016\",\"nomCom\":\"Autheuil\",\"NOM_COM\":\"AUTHEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67425,48.56219]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19903,\"INSEE_Comm\":\"95295\",\"nomCom\":\"Guiry-en-Vexin\",\"NOM_COM\":\"GUIRY-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85569,49.11585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19916,\"INSEE_Comm\":\"28417\",\"nomCom\":\"Villiers-le-Morhier\",\"NOM_COM\":\"VILLIERS-LE-MORHIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57248,48.62115]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19925,\"INSEE_Comm\":\"27525\",\"nomCom\":\"Sainte-Colombe-pr�s-Vernon\",\"NOM_COM\":\"SAINTE-COLOMBE-PRES-VERNON\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34107,49.09494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19953,\"INSEE_Comm\":\"14630\",\"nomCom\":\"Saint-Martin-des-Entr�es\",\"NOM_COM\":\"SAINT-MARTIN-DES-ENTREES\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.66495,49.25745]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19960,\"INSEE_Comm\":\"76591\",\"nomCom\":\"Saint-Jacques-sur-Darn�tal\",\"NOM_COM\":\"SAINT-JACQUES-SUR-DARNETAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":104,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20811,49.4458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19964,\"INSEE_Comm\":\"78076\",\"nomCom\":\"Boissets\",\"NOM_COM\":\"BOISSETS\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58768,48.85873]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19965,\"INSEE_Comm\":\"60452\",\"nomCom\":\"Neuville-Bosc\",\"NOM_COM\":\"NEUVILLE-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01395,49.20293]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19966,\"INSEE_Comm\":\"95157\",\"nomCom\":\"Ch�rence\",\"NOM_COM\":\"CHERENCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68128,49.09117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19967,\"INSEE_Comm\":\"61410\",\"nomCom\":\"Saint-Jean-des-Bois\",\"NOM_COM\":\"SAINT-JEAN-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.7947,48.72665]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19968,\"INSEE_Comm\":\"14345\",\"nomCom\":\"Jort\",\"NOM_COM\":\"JORT\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07285,48.9733]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19969,\"INSEE_Comm\":\"61276\",\"nomCom\":\"Merri\",\"NOM_COM\":\"MERRI\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04805,48.84964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19970,\"INSEE_Comm\":\"14223\",\"nomCom\":\"D�troit\",\"NOM_COM\":\"LEDETROIT\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34499,48.87384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19972,\"INSEE_Comm\":\"14031\",\"nomCom\":\"Authieux-Papion\",\"NOM_COM\":\"LESAUTHIEUX-PAPION\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05314,49.06374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":19974,\"INSEE_Comm\":\"61272\",\"nomCom\":\"M�nil-Vicomte\",\"NOM_COM\":\"LEMENIL-VICOMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29357,48.74544]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20024,\"INSEE_Comm\":\"14712\",\"nomCom\":\"Troarn\",\"NOM_COM\":\"TROARN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":219,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.18351,49.19171]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20025,\"INSEE_Comm\":\"14543\",\"nomCom\":\"Rots\",\"NOM_COM\":\"ROTS\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47479,49.20619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20026,\"INSEE_Comm\":\"14272\",\"nomCom\":\"Folie\",\"NOM_COM\":\"LAFOLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.97036,49.26271]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20027,\"INSEE_Comm\":\"14436\",\"nomCom\":\"Monceaux-en-Bessin\",\"NOM_COM\":\"MONCEAUX-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68935,49.25035]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20028,\"INSEE_Comm\":\"27654\",\"nomCom\":\"Tourville-la-Campagne\",\"NOM_COM\":\"TOURVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":61,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89926,49.22544]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20029,\"INSEE_Comm\":\"14528\",\"nomCom\":\"Quetteville\",\"NOM_COM\":\"QUETTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30008,49.342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20030,\"INSEE_Comm\":\"76133\",\"nomCom\":\"Bourg-Dun\",\"NOM_COM\":\"LEBOURG-DUN\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89262,49.87027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20031,\"INSEE_Comm\":\"76155\",\"nomCom\":\"Canehan\",\"NOM_COM\":\"CANEHAN\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34358,49.9792]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20032,\"INSEE_Comm\":\"76449\",\"nomCom\":\"Montreuil-en-Caux\",\"NOM_COM\":\"MONTREUIL-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15553,49.68621]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20033,\"INSEE_Comm\":\"76298\",\"nomCom\":\"Ganzeville\",\"NOM_COM\":\"GANZEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40364,49.7315]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20034,\"INSEE_Comm\":\"76142\",\"nomCom\":\"Br�montier-Merval\",\"NOM_COM\":\"BREMONTIER-MERVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61719,49.51433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20035,\"INSEE_Comm\":\"80608\",\"nomCom\":\"Omi�court\",\"NOM_COM\":\"OMIECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84321,49.80272]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20036,\"INSEE_Comm\":\"80045\",\"nomCom\":\"Authuille\",\"NOM_COM\":\"AUTHUILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67679,50.04677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20037,\"INSEE_Comm\":\"60549\",\"nomCom\":\"Rotangy\",\"NOM_COM\":\"ROTANGY\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08836,49.585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20038,\"INSEE_Comm\":\"60319\",\"nomCom\":\"Houssoye\",\"NOM_COM\":\"LAHOUSSOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94825,49.35412]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20039,\"INSEE_Comm\":\"60610\",\"nomCom\":\"Sempigny\",\"NOM_COM\":\"SEMPIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00055,49.55268]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20040,\"INSEE_Comm\":\"60348\",\"nomCom\":\"Larbroye\",\"NOM_COM\":\"LARBROYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96065,49.57116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20041,\"INSEE_Comm\":\"60409\",\"nomCom\":\"Monchy-Saint-�loi\",\"NOM_COM\":\"MONCHY-SAINT-ELOI\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46896,49.29635]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20042,\"INSEE_Comm\":\"60018\",\"nomCom\":\"Anserville\",\"NOM_COM\":\"ANSERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2061,49.23048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20043,\"INSEE_Comm\":\"80117\",\"nomCom\":\"Bouchon\",\"NOM_COM\":\"BOUCHON\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02674,50.04023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20044,\"INSEE_Comm\":\"80032\",\"nomCom\":\"Assainvillers\",\"NOM_COM\":\"ASSAINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5993,49.62313]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20045,\"INSEE_Comm\":\"80579\",\"nomCom\":\"Muille-Villette\",\"NOM_COM\":\"MUILLE-VILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06873,49.72504]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20063,\"INSEE_Comm\":\"80108\",\"nomCom\":\"Boisbergues\",\"NOM_COM\":\"BOISBERGUES\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22236,50.15312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20064,\"INSEE_Comm\":\"80692\",\"nomCom\":\"Sailly-Flibeaucourt\",\"NOM_COM\":\"SAILLY-FLIBEAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77062,50.17932]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20088,\"INSEE_Comm\":\"76433\",\"nomCom\":\"Mesnil-Panneville\",\"NOM_COM\":\"MESNIL-PANNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88266,49.58858]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20089,\"INSEE_Comm\":\"76294\",\"nomCom\":\"Gaillarde\",\"NOM_COM\":\"LAGAILLARDE\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86421,49.83802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20090,\"INSEE_Comm\":\"76622\",\"nomCom\":\"Saint-Maurice-d'�telan\",\"NOM_COM\":\"SAINT-MAURICE-D'ETELAN\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62505,49.45857]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20091,\"INSEE_Comm\":\"76627\",\"nomCom\":\"Saint-Nicolas-de-la-Taille\",\"NOM_COM\":\"SAINT-NICOLAS-DE-LA-TAILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":80,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46975,49.51425]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20092,\"INSEE_Comm\":\"76470\",\"nomCom\":\"Normanville\",\"NOM_COM\":\"NORMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58703,49.69118]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20096,\"INSEE_Comm\":\"28243\",\"nomCom\":\"M�rouville\",\"NOM_COM\":\"MEROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90092,48.30304]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20097,\"INSEE_Comm\":\"78437\",\"nomCom\":\"Mousseaux-sur-Seine\",\"NOM_COM\":\"MOUSSEAUX-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65046,49.05128]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20098,\"INSEE_Comm\":\"78361\",\"nomCom\":\"Mantes-la-Jolie\",\"NOM_COM\":\"MANTES-LA-JOLIE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"7812\",\"nomCan\":\"Mantes-la-Jolie\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1070,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69338,48.99817]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20102,\"INSEE_Comm\":\"27273\",\"nomCom\":\"Gadencourt\",\"NOM_COM\":\"GADENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40342,48.98423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20126,\"INSEE_Comm\":\"78031\",\"nomCom\":\"Auffreville-Brasseuil\",\"NOM_COM\":\"AUFFREVILLE-BRASSEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70515,48.95442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20127,\"INSEE_Comm\":\"28276\",\"nomCom\":\"Neuvy-en-Beauce\",\"NOM_COM\":\"NEUVY-EN-BEAUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.874,48.2759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20137,\"INSEE_Comm\":\"61489\",\"nomCom\":\"Tourailles\",\"NOM_COM\":\"LESTOURAILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41318,48.75662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20138,\"INSEE_Comm\":\"78499\",\"nomCom\":\"Ponth�vrard\",\"NOM_COM\":\"PONTHEVRARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90806,48.54993]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20143,\"INSEE_Comm\":\"95331\",\"nomCom\":\"Lassy\",\"NOM_COM\":\"LASSY\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43785,49.09493]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20144,\"INSEE_Comm\":\"76226\",\"nomCom\":\"�cretteville-sur-Mer\",\"NOM_COM\":\"ECRETTEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.486,49.79079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20146,\"INSEE_Comm\":\"78674\",\"nomCom\":\"Villepreux\",\"NOM_COM\":\"VILLEPREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":131,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01309,48.83114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20150,\"INSEE_Comm\":\"80151\",\"nomCom\":\"Buire-sur-l'Ancre\",\"NOM_COM\":\"BUIRE-SUR-L'ANCRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59296,49.97485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20152,\"INSEE_Comm\":\"80322\",\"nomCom\":\"Fonches-Fonchette\",\"NOM_COM\":\"FONCHES-FONCHETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82158,49.77611]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20156,\"INSEE_Comm\":\"80633\",\"nomCom\":\"Ponthoile\",\"NOM_COM\":\"PONTHOILE\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70661,50.21862]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20176,\"INSEE_Comm\":\"76121\",\"nomCom\":\"Bosc-�deline\",\"NOM_COM\":\"BOSC-EDELINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42959,49.57439]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20181,\"INSEE_Comm\":\"61109\",\"nomCom\":\"Clairefoug�re\",\"NOM_COM\":\"CLAIREFOUGERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68436,48.81332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20206,\"INSEE_Comm\":\"14662\",\"nomCom\":\"Saint-Vigor-des-M�zerets\",\"NOM_COM\":\"SAINT-VIGOR-DES-MEZERETS\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.63343,48.90336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20213,\"INSEE_Comm\":\"27411\",\"nomCom\":\"Moisville\",\"NOM_COM\":\"MOISVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16604,48.8482]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20225,\"INSEE_Comm\":\"28223\",\"nomCom\":\"Luray\",\"NOM_COM\":\"LURAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39904,48.7158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20226,\"INSEE_Comm\":\"28171\",\"nomCom\":\"Garnay\",\"NOM_COM\":\"GARNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2828\",\"nomCan\":\"Dreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33719,48.6998]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20239,\"INSEE_Comm\":\"60356\",\"nomCom\":\"Lavilletertre\",\"NOM_COM\":\"LAVILLETERTRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93413,49.19056]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20245,\"INSEE_Comm\":\"61066\",\"nomCom\":\"Bur�\",\"NOM_COM\":\"BURE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40433,48.50572]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20258,\"INSEE_Comm\":\"27555\",\"nomCom\":\"Saint-Laurent-des-Bois\",\"NOM_COM\":\"SAINT-LAURENT-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31918,48.84598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20266,\"INSEE_Comm\":\"28242\",\"nomCom\":\"M�r�glise\",\"NOM_COM\":\"MEREGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18476,48.29353]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20277,\"INSEE_Comm\":\"27189\",\"nomCom\":\"Croisille\",\"NOM_COM\":\"LACROISILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97565,48.9905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20284,\"INSEE_Comm\":\"78234\",\"nomCom\":\"Flacourt\",\"NOM_COM\":\"FLACOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6426,48.93233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20288,\"INSEE_Comm\":\"27404\",\"nomCom\":\"Mesnil-Rousset\",\"NOM_COM\":\"MESNIL-ROUSSET\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55728,48.89346]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20289,\"INSEE_Comm\":\"27217\",\"nomCom\":\"�manville\",\"NOM_COM\":\"EMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9067,49.05892]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20295,\"INSEE_Comm\":\"27573\",\"nomCom\":\"Saint-Nicolas-d'Attez\",\"NOM_COM\":\"SAINT-NICOLAS-D'ATTEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93164,48.81016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20297,\"INSEE_Comm\":\"27629\",\"nomCom\":\"Thiberville\",\"NOM_COM\":\"THIBERVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":174,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44043,49.13206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20301,\"INSEE_Comm\":\"76440\",\"nomCom\":\"Molagnies\",\"NOM_COM\":\"MOLAGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72458,49.52232]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20308,\"INSEE_Comm\":\"80623\",\"nomCom\":\"Piennes-Onvillers\",\"NOM_COM\":\"PIENNES-ONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64674,49.62531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20312,\"INSEE_Comm\":\"27677\",\"nomCom\":\"Venon\",\"NOM_COM\":\"VENON\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05163,49.17316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20313,\"INSEE_Comm\":\"95219\",\"nomCom\":\"Ermont\",\"NOM_COM\":\"ERMONT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9510\",\"nomCan\":\"Ermont\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":161,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25627,48.9884]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20314,\"INSEE_Comm\":\"78501\",\"nomCom\":\"Porcheville\",\"NOM_COM\":\"PORCHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":102,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76831,48.97619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20315,\"INSEE_Comm\":\"14319\",\"nomCom\":\"Grentheville\",\"NOM_COM\":\"GRENTHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29412,49.14608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20316,\"INSEE_Comm\":\"14343\",\"nomCom\":\"Isles-Bardel\",\"NOM_COM\":\"LESISLES-BARDEL\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34905,48.83743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20317,\"INSEE_Comm\":\"14502\",\"nomCom\":\"Pierrepont\",\"NOM_COM\":\"PIERREPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32132,48.88675]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20318,\"INSEE_Comm\":\"14654\",\"nomCom\":\"Saint-Pierre-sur-Dives\",\"NOM_COM\":\"SAINT-PIERRE-SUR-DIVES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0411,49.01586]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20341,\"INSEE_Comm\":\"60487\",\"nomCom\":\"Parnes\",\"NOM_COM\":\"PARNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74909,49.2]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20342,\"INSEE_Comm\":\"60479\",\"nomCom\":\"Ormoy-Villers\",\"NOM_COM\":\"ORMOY-VILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84691,49.19722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20347,\"INSEE_Comm\":\"14365\",\"nomCom\":\"Lion-sur-Mer\",\"NOM_COM\":\"LION-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":122,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.33395,49.30077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20367,\"INSEE_Comm\":\"14382\",\"nomCom\":\"Louvi�res\",\"NOM_COM\":\"LOUVIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.92252,49.37165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20368,\"INSEE_Comm\":\"76280\",\"nomCom\":\"Fr�auville\",\"NOM_COM\":\"FREAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41697,49.82496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20369,\"INSEE_Comm\":\"76004\",\"nomCom\":\"Ambrumesnil\",\"NOM_COM\":\"AMBRUMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98376,49.85848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20370,\"INSEE_Comm\":\"80834\",\"nomCom\":\"Yzengremer\",\"NOM_COM\":\"YZENGREMER\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5183,50.06011]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20371,\"INSEE_Comm\":\"27185\",\"nomCom\":\"Crestot\",\"NOM_COM\":\"CRESTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96953,49.20396]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20372,\"INSEE_Comm\":\"80536\",\"nomCom\":\"Mesnil-Bruntel\",\"NOM_COM\":\"MESNIL-BRUNTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96284,49.89793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20373,\"INSEE_Comm\":\"60328\",\"nomCom\":\"Juvignies\",\"NOM_COM\":\"JUVIGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09077,49.52399]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20374,\"INSEE_Comm\":\"60662\",\"nomCom\":\"Vauroux\",\"NOM_COM\":\"LEVAUROUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91495,49.38122]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20375,\"INSEE_Comm\":\"60441\",\"nomCom\":\"Moyvillers\",\"NOM_COM\":\"MOYVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64289,49.40717]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20376,\"INSEE_Comm\":\"60597\",\"nomCom\":\"Saint-Sauveur\",\"NOM_COM\":\"SAINT-SAUVEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"6037\",\"nomCan\":\"Compi�gne-Sud-Est\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80616,49.32852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20377,\"INSEE_Comm\":\"60102\",\"nomCom\":\"Brenouille\",\"NOM_COM\":\"BRENOUILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54997,49.30689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20378,\"INSEE_Comm\":\"80119\",\"nomCom\":\"Bougainville\",\"NOM_COM\":\"BOUGAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04694,49.86462]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20379,\"INSEE_Comm\":\"80130\",\"nomCom\":\"Bovelles\",\"NOM_COM\":\"BOVELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14078,49.88974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20413,\"INSEE_Comm\":\"76757\",\"nomCom\":\"Yvecrique\",\"NOM_COM\":\"YVECRIQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80713,49.68926]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20414,\"INSEE_Comm\":\"76408\",\"nomCom\":\"Manneville-la-Goupil\",\"NOM_COM\":\"MANNEVILLE-LA-GOUPIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34755,49.6116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20415,\"INSEE_Comm\":\"76680\",\"nomCom\":\"Sorquainville\",\"NOM_COM\":\"SORQUAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55523,49.70332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20416,\"INSEE_Comm\":\"76336\",\"nomCom\":\"Gueutteville-les-Gr�s\",\"NOM_COM\":\"GUEUTTEVILLE-LES-GRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76483,49.83887]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20417,\"INSEE_Comm\":\"76468\",\"nomCom\":\"Nointot\",\"NOM_COM\":\"NOINTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":69,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47272,49.59784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20421,\"INSEE_Comm\":\"28168\",\"nomCom\":\"Gallardon\",\"NOM_COM\":\"GALLARDON\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68927,48.5338]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20422,\"INSEE_Comm\":\"28408\",\"nomCom\":\"Vierville\",\"NOM_COM\":\"VIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9004,48.38437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20451,\"INSEE_Comm\":\"27403\",\"nomCom\":\"Mesnil-Jourdain\",\"NOM_COM\":\"LEMESNIL-JOURDAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12763,49.18153]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20459,\"INSEE_Comm\":\"14623\",\"nomCom\":\"Saint-Martin-de-Fontenay\",\"NOM_COM\":\"SAINT-MARTIN-DE-FONTENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":283,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35169,49.11457]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20465,\"INSEE_Comm\":\"14475\",\"nomCom\":\"Noyers-Bocage\",\"NOM_COM\":\"NOYERS-BOCAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":93,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57536,49.12416]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20469,\"INSEE_Comm\":\"14183\",\"nomCom\":\"Cossesseville\",\"NOM_COM\":\"COSSESSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42519,48.89463]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20473,\"INSEE_Comm\":\"95409\",\"nomCom\":\"Moisselles\",\"NOM_COM\":\"MOISSELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"9506\",\"nomCan\":\"Domont\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33745,49.04596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20474,\"INSEE_Comm\":\"78077\",\"nomCom\":\"Boissi�re-�cole\",\"NOM_COM\":\"LABOISSIERE-ECOLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66775,48.68989]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20478,\"INSEE_Comm\":\"14511\",\"nomCom\":\"Pont-Bellanger\",\"NOM_COM\":\"PONT-BELLANGER\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.98281,48.93515]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20481,\"INSEE_Comm\":\"80680\",\"nomCom\":\"Rosi�res-en-Santerre\",\"NOM_COM\":\"ROSIERES-EN-SANTERRE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":77,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70365,49.81802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20482,\"INSEE_Comm\":\"80141\",\"nomCom\":\"Brie\",\"NOM_COM\":\"BRIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.9422,49.87921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20484,\"INSEE_Comm\":\"80320\",\"nomCom\":\"Folies\",\"NOM_COM\":\"FOLIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66649,49.76298]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20487,\"INSEE_Comm\":\"80232\",\"nomCom\":\"Damery\",\"NOM_COM\":\"DAMERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73677,49.73076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20488,\"INSEE_Comm\":\"80165\",\"nomCom\":\"Camps-en-Ami�nois\",\"NOM_COM\":\"CAMPS-EN-AMIENOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96449,49.88373]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20489,\"INSEE_Comm\":\"80424\",\"nomCom\":\"H�b�court\",\"NOM_COM\":\"HEBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2597,49.81823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20490,\"INSEE_Comm\":\"80496\",\"nomCom\":\"Machiel\",\"NOM_COM\":\"MACHIEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83744,50.27219]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20494,\"INSEE_Comm\":\"78545\",\"nomCom\":\"Saint-Cyr-l'�cole\",\"NOM_COM\":\"SAINT-CYR-L'ECOLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7836\",\"nomCan\":\"Saint-Cyr-l'�cole\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1477,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06593,48.80658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20532,\"INSEE_Comm\":\"61303\",\"nomCom\":\"N�cy\",\"NOM_COM\":\"NECY\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.11783,48.82847]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20558,\"INSEE_Comm\":\"61001\",\"nomCom\":\"Alen�on\",\"NOM_COM\":\"ALENCON\",\"Statut\":\"Pr?fecture\",\"idCan\":\"6199\",\"nomCan\":\"Alen�on\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":528,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09166,48.43175]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20581,\"INSEE_Comm\":\"80164\",\"nomCom\":\"Camon\",\"NOM_COM\":\"CAMON\",\"Statut\":\"Communesimple\",\"idCan\":\"8010\",\"nomCan\":\"Amiens4e(Est)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":141,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36321,49.90132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20591,\"INSEE_Comm\":\"78606\",\"nomCom\":\"Tartre-Gaudran\",\"NOM_COM\":\"LETARTRE-GAUDRAN\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60366,48.69714]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20592,\"INSEE_Comm\":\"61067\",\"nomCom\":\"Bures\",\"NOM_COM\":\"BURES\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40137,48.55793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20603,\"INSEE_Comm\":\"27179\",\"nomCom\":\"Courb�pine\",\"NOM_COM\":\"COURBEPINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5662,49.12931]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20604,\"INSEE_Comm\":\"61360\",\"nomCom\":\"Saint-Agnan-sur-Sarthe\",\"NOM_COM\":\"SAINT-AGNAN-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42894,48.62195]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20611,\"INSEE_Comm\":\"76269\",\"nomCom\":\"Fontaine-en-Bray\",\"NOM_COM\":\"FONTAINE-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42199,49.67809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20616,\"INSEE_Comm\":\"27121\",\"nomCom\":\"Bus-Saint-R�my\",\"NOM_COM\":\"BUS-SAINT-REMY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63529,49.1458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20618,\"INSEE_Comm\":\"28007\",\"nomCom\":\"Anet\",\"NOM_COM\":\"ANET\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":102,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44282,48.85311]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20638,\"INSEE_Comm\":\"78165\",\"nomCom\":\"Clayes-sous-Bois\",\"NOM_COM\":\"LESCLAYES-SOUS-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7838\",\"nomCan\":\"Plaisir\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":274,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98406,48.81864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20639,\"INSEE_Comm\":\"78290\",\"nomCom\":\"Guernes\",\"NOM_COM\":\"GUERNES\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64239,49.01537]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20644,\"INSEE_Comm\":\"61136\",\"nomCom\":\"Couvains\",\"NOM_COM\":\"COUVAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55943,48.86615]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20645,\"INSEE_Comm\":\"27137\",\"nomCom\":\"Chaise-Dieu-du-Theil\",\"NOM_COM\":\"CHAISE-DIEU-DU-THEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77093,48.75574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20647,\"INSEE_Comm\":\"76146\",\"nomCom\":\"Buchy\",\"NOM_COM\":\"BUCHY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":88,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35095,49.5895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20648,\"INSEE_Comm\":\"14579\",\"nomCom\":\"Saint-Georges-d'Aunay\",\"NOM_COM\":\"SAINT-GEORGES-D'AUNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.6889,49.02662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20657,\"INSEE_Comm\":\"14190\",\"nomCom\":\"Courcy\",\"NOM_COM\":\"COURCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03377,48.96959]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20658,\"INSEE_Comm\":\"61354\",\"nomCom\":\"Rotours\",\"NOM_COM\":\"LESROTOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26313,48.78429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20662,\"INSEE_Comm\":\"14163\",\"nomCom\":\"Cl�ville\",\"NOM_COM\":\"CLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09445,49.14405]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20677,\"INSEE_Comm\":\"14109\",\"nomCom\":\"Brouay\",\"NOM_COM\":\"BROUAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56295,49.20963]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20678,\"INSEE_Comm\":\"14525\",\"nomCom\":\"Putot-en-Bessin\",\"NOM_COM\":\"PUTOT-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54407,49.21374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20683,\"INSEE_Comm\":\"78013\",\"nomCom\":\"Andelu\",\"NOM_COM\":\"ANDELU\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81108,48.88823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20685,\"INSEE_Comm\":\"60473\",\"nomCom\":\"Ognes\",\"NOM_COM\":\"OGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8293,49.09919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20699,\"INSEE_Comm\":\"14409\",\"nomCom\":\"Merville-Franceville-Plage\",\"NOM_COM\":\"MERVILLE-FRANCEVILLE-PLAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":249,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.20189,49.27222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20700,\"INSEE_Comm\":\"14763\",\"nomCom\":\"Vouilly\",\"NOM_COM\":\"VOUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.03246,49.29593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20701,\"INSEE_Comm\":\"14609\",\"nomCom\":\"Saint-Loup-Hors\",\"NOM_COM\":\"SAINT-LOUP-HORS\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.72988,49.26045]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20702,\"INSEE_Comm\":\"80235\",\"nomCom\":\"Dargnies\",\"NOM_COM\":\"DARGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52971,50.0428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20703,\"INSEE_Comm\":\"76253\",\"nomCom\":\"�toutteville\",\"NOM_COM\":\"ETOUTTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":89,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78319,49.67206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20704,\"INSEE_Comm\":\"27593\",\"nomCom\":\"Saint-Pierre-des-Fleurs\",\"NOM_COM\":\"SAINT-PIERRE-DES-FLEURS\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96295,49.24927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20705,\"INSEE_Comm\":\"76560\",\"nomCom\":\"Saint-Aubin-�pinay\",\"NOM_COM\":\"SAINT-AUBIN-EPINAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.204,49.41903]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20706,\"INSEE_Comm\":\"60051\",\"nomCom\":\"Beaud�duit\",\"NOM_COM\":\"BEAUDEDUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05927,49.67886]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20707,\"INSEE_Comm\":\"60573\",\"nomCom\":\"Sainte-Eusoye\",\"NOM_COM\":\"SAINTE-EUSOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25016,49.5752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20708,\"INSEE_Comm\":\"60267\",\"nomCom\":\"Gallet\",\"NOM_COM\":\"LEGALLET\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11231,49.62512]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20709,\"INSEE_Comm\":\"80163\",\"nomCom\":\"Cambron\",\"NOM_COM\":\"CAMBRON\",\"Statut\":\"Communesimple\",\"idCan\":\"8002\",\"nomCan\":\"Abbeville-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76566,50.10926]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20710,\"INSEE_Comm\":\"60268\",\"nomCom\":\"Gannes\",\"NOM_COM\":\"GANNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41924,49.57386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20711,\"INSEE_Comm\":\"60440\",\"nomCom\":\"Moyenneville\",\"NOM_COM\":\"MOYENNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63342,49.48685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20712,\"INSEE_Comm\":\"60459\",\"nomCom\":\"Neuville-sur-Ressons\",\"NOM_COM\":\"LANEUVILLE-SUR-RESSONS\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74514,49.5515]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20713,\"INSEE_Comm\":\"60276\",\"nomCom\":\"Godenvillers\",\"NOM_COM\":\"GODENVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54732,49.58201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20714,\"INSEE_Comm\":\"60078\",\"nomCom\":\"Blincourt\",\"NOM_COM\":\"BLINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61937,49.38481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20715,\"INSEE_Comm\":\"60396\",\"nomCom\":\"M�ry-la-Bataille\",\"NOM_COM\":\"MERY-LA-BATAILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63061,49.54423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20716,\"INSEE_Comm\":\"80650\",\"nomCom\":\"Querrieu\",\"NOM_COM\":\"QUERRIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41366,49.93873]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20745,\"INSEE_Comm\":\"76508\",\"nomCom\":\"Poterie-Cap-d'Antifer\",\"NOM_COM\":\"LAPOTERIE-CAP-D'ANTIFER\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.17851,49.67823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20746,\"INSEE_Comm\":\"76752\",\"nomCom\":\"Yerville\",\"NOM_COM\":\"YERVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":113,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.887,49.67155]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20747,\"INSEE_Comm\":\"76362\",\"nomCom\":\"Heurteauville\",\"NOM_COM\":\"HEURTEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80191,49.45322]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20748,\"INSEE_Comm\":\"76009\",\"nomCom\":\"Ancourteville-sur-H�ricourt\",\"NOM_COM\":\"ANCOURTEVILLE-SUR-HERICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66065,49.69075]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20750,\"INSEE_Comm\":\"27285\",\"nomCom\":\"Giverny\",\"NOM_COM\":\"GIVERNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53289,49.08194]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20768,\"INSEE_Comm\":\"27646\",\"nomCom\":\"Torpt\",\"NOM_COM\":\"LETORPT\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38072,49.33696]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20771,\"INSEE_Comm\":\"27012\",\"nomCom\":\"Amfreville-les-Champs\",\"NOM_COM\":\"AMFREVILLE-LES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3215,49.31265]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20772,\"INSEE_Comm\":\"27458\",\"nomCom\":\"P�tres\",\"NOM_COM\":\"PITRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":146,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21786,49.33137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20791,\"INSEE_Comm\":\"14057\",\"nomCom\":\"Bellengreville\",\"NOM_COM\":\"BELLENGREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.23259,49.12054]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20797,\"INSEE_Comm\":\"28214\",\"nomCom\":\"Loupe\",\"NOM_COM\":\"LALOUPE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":125,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02235,48.47318]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20807,\"INSEE_Comm\":\"95028\",\"nomCom\":\"Attainville\",\"NOM_COM\":\"ATTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9506\",\"nomCan\":\"Domont\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35044,49.06096]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20808,\"INSEE_Comm\":\"80666\",\"nomCom\":\"Remaisnil\",\"NOM_COM\":\"REMAISNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24244,50.20571]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20811,\"INSEE_Comm\":\"78431\",\"nomCom\":\"Morainvilliers\",\"NOM_COM\":\"MORAINVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7817\",\"nomCan\":\"Poissy-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":121,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9455,48.93435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20816,\"INSEE_Comm\":\"80696\",\"nomCom\":\"Sains-en-Ami�nois\",\"NOM_COM\":\"SAINS-EN-AMIENOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32409,49.81471]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20819,\"INSEE_Comm\":\"80181\",\"nomCom\":\"Cayeux-en-Santerre\",\"NOM_COM\":\"CAYEUX-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60583,49.81256]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20820,\"INSEE_Comm\":\"80465\",\"nomCom\":\"Languevoisin-Quiquery\",\"NOM_COM\":\"LANGUEVOISIN-QUIQUERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.93309,49.7457]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20822,\"INSEE_Comm\":\"80246\",\"nomCom\":\"Dommartin\",\"NOM_COM\":\"DOMMARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40135,49.7953]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20824,\"INSEE_Comm\":\"80517\",\"nomCom\":\"Marquivillers\",\"NOM_COM\":\"MARQUIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68973,49.67991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20825,\"INSEE_Comm\":\"80410\",\"nomCom\":\"Ham\",\"NOM_COM\":\"HAM\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":82,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07401,49.75347]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20844,\"INSEE_Comm\":\"61093\",\"nomCom\":\"Chanu\",\"NOM_COM\":\"CHANU\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67291,48.72246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20852,\"INSEE_Comm\":\"78003\",\"nomCom\":\"Ablis\",\"NOM_COM\":\"ABLIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":191,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85096,48.52832]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20892,\"INSEE_Comm\":\"28163\",\"nomCom\":\"Fresnay-le-Gilmert\",\"NOM_COM\":\"FRESNAY-LE-GILMERT\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4182,48.51298]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20894,\"INSEE_Comm\":\"14383\",\"nomCom\":\"Louvigny\",\"NOM_COM\":\"LOUVIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1444\",\"nomCan\":\"Caen8eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":349,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39659,49.15526]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20897,\"INSEE_Comm\":\"27564\",\"nomCom\":\"Saint-Mards-de-Fresne\",\"NOM_COM\":\"SAINT-MARDS-DE-FRESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45458,49.08059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20916,\"INSEE_Comm\":\"28346\",\"nomCom\":\"Saint-Lubin-de-Cravant\",\"NOM_COM\":\"SAINT-LUBIN-DE-CRAVANT\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10139,48.70718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20922,\"INSEE_Comm\":\"27570\",\"nomCom\":\"Saint-Martin-la-Campagne\",\"NOM_COM\":\"SAINT-MARTIN-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07719,49.06513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20939,\"INSEE_Comm\":\"78082\",\"nomCom\":\"Boissy-Mauvoisin\",\"NOM_COM\":\"BOISSY-MAUVOISIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5816,48.96586]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20946,\"INSEE_Comm\":\"28005\",\"nomCom\":\"Alluyes\",\"NOM_COM\":\"ALLUYES\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36379,48.22896]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20953,\"INSEE_Comm\":\"14270\",\"nomCom\":\"Firfol\",\"NOM_COM\":\"FIRFOL\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32164,49.15206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20960,\"INSEE_Comm\":\"27043\",\"nomCom\":\"Baux-de-Breteuil\",\"NOM_COM\":\"LESBAUX-DE-BRETEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80144,48.86687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20965,\"INSEE_Comm\":\"27201\",\"nomCom\":\"Daubeuf-la-Campagne\",\"NOM_COM\":\"DAUBEUF-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02944,49.18919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20966,\"INSEE_Comm\":\"78084\",\"nomCom\":\"Boissy-sans-Avoir\",\"NOM_COM\":\"BOISSY-SANS-AVOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79754,48.82104]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20967,\"INSEE_Comm\":\"14360\",\"nomCom\":\"Leffard\",\"NOM_COM\":\"LEFFARD\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29724,48.91637]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20968,\"INSEE_Comm\":\"14206\",\"nomCom\":\"Crocy\",\"NOM_COM\":\"CROCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.05177,48.87708]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20969,\"INSEE_Comm\":\"61062\",\"nomCom\":\"Brieux\",\"NOM_COM\":\"BRIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07911,48.83342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20970,\"INSEE_Comm\":\"61273\",\"nomCom\":\"M�nil-Vin\",\"NOM_COM\":\"MENIL-VIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.31917,48.84956]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20971,\"INSEE_Comm\":\"14153\",\"nomCom\":\"Chapelle-Haute-Grue\",\"NOM_COM\":\"LACHAPELLE-HAUTE-GRUE\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.146,48.96403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20972,\"INSEE_Comm\":\"14226\",\"nomCom\":\"Donnay\",\"NOM_COM\":\"DONNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41733,48.94688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":20988,\"INSEE_Comm\":\"14227\",\"nomCom\":\"Douville-en-Auge\",\"NOM_COM\":\"DOUVILLE-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.02125,49.26398]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21024,\"INSEE_Comm\":\"14399\",\"nomCom\":\"Manneville-la-Pipard\",\"NOM_COM\":\"MANNEVILLE-LA-PIPARD\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22836,49.26529]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21027,\"INSEE_Comm\":\"14500\",\"nomCom\":\"Pierrefitte-en-Auge\",\"NOM_COM\":\"PIERREFITTE-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20029,49.25491]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21028,\"INSEE_Comm\":\"14748\",\"nomCom\":\"Vieux-Bourg\",\"NOM_COM\":\"VIEUX-BOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24546,49.31285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21029,\"INSEE_Comm\":\"76516\",\"nomCom\":\"Qui�vrecourt\",\"NOM_COM\":\"QUIEVRECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41858,49.72539]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21030,\"INSEE_Comm\":\"76180\",\"nomCom\":\"Cleuville\",\"NOM_COM\":\"CLEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64795,49.70353]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21031,\"INSEE_Comm\":\"76359\",\"nomCom\":\"H�ronchelles\",\"NOM_COM\":\"HERONCHELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38156,49.53794]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21032,\"INSEE_Comm\":\"80195\",\"nomCom\":\"Chuignolles\",\"NOM_COM\":\"CHUIGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72843,49.90164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21033,\"INSEE_Comm\":\"80784\",\"nomCom\":\"Vaux-sur-Somme\",\"NOM_COM\":\"VAUX-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55258,49.92736]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21034,\"INSEE_Comm\":\"80521\",\"nomCom\":\"Maurepas\",\"NOM_COM\":\"MAUREPAS\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85285,49.98532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21035,\"INSEE_Comm\":\"60081\",\"nomCom\":\"Bonlier\",\"NOM_COM\":\"BONLIER\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14991,49.47278]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21036,\"INSEE_Comm\":\"60257\",\"nomCom\":\"Fresne-L�guillon\",\"NOM_COM\":\"FRESNE-LEGUILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98915,49.25097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21037,\"INSEE_Comm\":\"60300\",\"nomCom\":\"Hardivillers-en-Vexin\",\"NOM_COM\":\"HARDIVILLERS-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93538,49.31076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21038,\"INSEE_Comm\":\"60247\",\"nomCom\":\"Fouilleuse\",\"NOM_COM\":\"FOUILLEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54054,49.42699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21039,\"INSEE_Comm\":\"60447\",\"nomCom\":\"N�ry\",\"NOM_COM\":\"NERY\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77131,49.27131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21040,\"INSEE_Comm\":\"80123\",\"nomCom\":\"Bourdon\",\"NOM_COM\":\"BOURDON\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08655,49.9902]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21041,\"INSEE_Comm\":\"80744\",\"nomCom\":\"Tailly\",\"NOM_COM\":\"TAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94786,49.9346]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21042,\"INSEE_Comm\":\"60305\",\"nomCom\":\"Hautefontaine\",\"NOM_COM\":\"HAUTEFONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06285,49.36364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21052,\"INSEE_Comm\":\"80006\",\"nomCom\":\"Agenvillers\",\"NOM_COM\":\"AGENVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92367,50.17928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21067,\"INSEE_Comm\":\"76397\",\"nomCom\":\"Longueville-sur-Scie\",\"NOM_COM\":\"LONGUEVILLE-SUR-SCIE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10719,49.79574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21068,\"INSEE_Comm\":\"76115\",\"nomCom\":\"Bolleville\",\"NOM_COM\":\"BOLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56397,49.60283]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21069,\"INSEE_Comm\":\"76309\",\"nomCom\":\"Gonzeville\",\"NOM_COM\":\"GONZEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80779,49.76003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21072,\"INSEE_Comm\":\"28212\",\"nomCom\":\"Loigny-la-Bataille\",\"NOM_COM\":\"LOIGNY-LA-BATAILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72344,48.12697]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21073,\"INSEE_Comm\":\"78410\",\"nomCom\":\"Moisson\",\"NOM_COM\":\"MOISSON\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66415,49.06826]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21079,\"INSEE_Comm\":\"27153\",\"nomCom\":\"Chauvincourt-Provemont\",\"NOM_COM\":\"CHAUVINCOURT-PROVEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64529,49.2809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21108,\"INSEE_Comm\":\"61397\",\"nomCom\":\"Saint-Germain-du-Corb�is\",\"NOM_COM\":\"SAINT-GERMAIN-DU-CORBEIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":115,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0584,48.41758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21109,\"INSEE_Comm\":\"28190\",\"nomCom\":\"Guillonville\",\"NOM_COM\":\"GUILLONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64289,48.09361]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21115,\"INSEE_Comm\":\"14320\",\"nomCom\":\"Grimbosq\",\"NOM_COM\":\"GRIMBOSQ\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4436,49.04468]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21123,\"INSEE_Comm\":\"80155\",\"nomCom\":\"Bussus-Bussuel\",\"NOM_COM\":\"BUSSUS-BUSSUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00779,50.10994]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21126,\"INSEE_Comm\":\"95426\",\"nomCom\":\"Montlignon\",\"NOM_COM\":\"MONTLIGNON\",\"Statut\":\"Communesimple\",\"idCan\":\"9520\",\"nomCan\":\"Saint-Leu-la-For�t\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.289,49.01417]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21127,\"INSEE_Comm\":\"78404\",\"nomCom\":\"Millemont\",\"NOM_COM\":\"MILLEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72532,48.80806]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21128,\"INSEE_Comm\":\"78033\",\"nomCom\":\"Aulnay-sur-Mauldre\",\"NOM_COM\":\"AULNAY-SUR-MAULDRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84082,48.92912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21130,\"INSEE_Comm\":\"80376\",\"nomCom\":\"Gentelles\",\"NOM_COM\":\"GENTELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45055,49.84517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21131,\"INSEE_Comm\":\"80339\",\"nomCom\":\"Fouquescourt\",\"NOM_COM\":\"FOUQUESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74741,49.77078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21134,\"INSEE_Comm\":\"80511\",\"nomCom\":\"Marestmontiers\",\"NOM_COM\":\"MARESTMONTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52109,49.68248]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21135,\"INSEE_Comm\":\"80685\",\"nomCom\":\"Roye\",\"NOM_COM\":\"ROYE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":204,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78869,49.69369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21136,\"INSEE_Comm\":\"80345\",\"nomCom\":\"Franleu\",\"NOM_COM\":\"FRANLEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64455,50.09969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21144,\"INSEE_Comm\":\"14532\",\"nomCom\":\"Reculey\",\"NOM_COM\":\"LERECULEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.84212,48.9083]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21164,\"INSEE_Comm\":\"78096\",\"nomCom\":\"Bourdonn�\",\"NOM_COM\":\"BOURDONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65394,48.75433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21204,\"INSEE_Comm\":\"80659\",\"nomCom\":\"Raincheval\",\"NOM_COM\":\"RAINCHEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4391,50.07567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21231,\"INSEE_Comm\":\"61341\",\"nomCom\":\"Radon\",\"NOM_COM\":\"RADON\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08641,48.50899]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21260,\"INSEE_Comm\":\"27049\",\"nomCom\":\"Beaumesnil\",\"NOM_COM\":\"BEAUMESNIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69642,49.00905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21262,\"INSEE_Comm\":\"27514\",\"nomCom\":\"Saint-Aubin-du-Thenney\",\"NOM_COM\":\"SAINT-AUBIN-DU-THENNEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49432,49.01523]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21263,\"INSEE_Comm\":\"27298\",\"nomCom\":\"Graveron-S�merville\",\"NOM_COM\":\"GRAVERON-SEMERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96633,49.09493]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21281,\"INSEE_Comm\":\"28211\",\"nomCom\":\"Logron\",\"NOM_COM\":\"LOGRON\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25354,48.14081]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21286,\"INSEE_Comm\":\"28247\",\"nomCom\":\"Mesnil-Simon\",\"NOM_COM\":\"LEMESNIL-SIMON\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53508,48.89007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21290,\"INSEE_Comm\":\"28355\",\"nomCom\":\"Saint-Ouen-Marchefroy\",\"NOM_COM\":\"SAINT-OUEN-MARCHEFROY\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53021,48.85722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21291,\"INSEE_Comm\":\"27477\",\"nomCom\":\"Pressagny-l'Orgueilleux\",\"NOM_COM\":\"PRESSAGNY-L'ORGUEILLEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46515,49.1308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21292,\"INSEE_Comm\":\"27596\",\"nomCom\":\"Saint-Pierre-du-Mesnil\",\"NOM_COM\":\"SAINT-PIERRE-DU-MESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57518,48.93136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21298,\"INSEE_Comm\":\"27389\",\"nomCom\":\"Marbeuf\",\"NOM_COM\":\"MARBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96286,49.15424]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21304,\"INSEE_Comm\":\"27074\",\"nomCom\":\"Boisney\",\"NOM_COM\":\"BOISNEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6497,49.15615]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21312,\"INSEE_Comm\":\"28167\",\"nomCom\":\"Frunc�\",\"NOM_COM\":\"FRUNCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19765,48.40557]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21320,\"INSEE_Comm\":\"95150\",\"nomCom\":\"Chaussy\",\"NOM_COM\":\"CHAUSSY\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70352,49.11346]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21321,\"INSEE_Comm\":\"61021\",\"nomCom\":\"Avrilly\",\"NOM_COM\":\"AVRILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.61781,48.53734]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21322,\"INSEE_Comm\":\"14435\",\"nomCom\":\"Monceaux\",\"NOM_COM\":\"LESMONCEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13022,49.11067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21324,\"INSEE_Comm\":\"61057\",\"nomCom\":\"Bourg-Saint-L�onard\",\"NOM_COM\":\"LEBOURG-SAINT-LEONARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10507,48.77156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21326,\"INSEE_Comm\":\"61170\",\"nomCom\":\"Fleur�\",\"NOM_COM\":\"FLEURE\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0507,48.68309]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21327,\"INSEE_Comm\":\"61271\",\"nomCom\":\"M�nil-Scelleur\",\"NOM_COM\":\"LEMENIL-SCELLEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12471,48.61275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21328,\"INSEE_Comm\":\"80678\",\"nomCom\":\"Rollot\",\"NOM_COM\":\"ROLLOT\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64866,49.59398]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21357,\"INSEE_Comm\":\"60358\",\"nomCom\":\"L�vignen\",\"NOM_COM\":\"LEVIGNEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":82,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91541,49.19706]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21366,\"INSEE_Comm\":\"14246\",\"nomCom\":\"Escoville\",\"NOM_COM\":\"ESCOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24572,49.20575]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21383,\"INSEE_Comm\":\"14045\",\"nomCom\":\"Basseneville\",\"NOM_COM\":\"BASSENEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13509,49.20696]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21384,\"INSEE_Comm\":\"14685\",\"nomCom\":\"Thaon\",\"NOM_COM\":\"THAON\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44883,49.25511]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21385,\"INSEE_Comm\":\"14754\",\"nomCom\":\"Villers-sur-Mer\",\"NOM_COM\":\"VILLERS-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":209,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00585,49.31104]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21386,\"INSEE_Comm\":\"80613\",\"nomCom\":\"Oust-Marest\",\"NOM_COM\":\"OUST-MAREST\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46849,50.04858]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21387,\"INSEE_Comm\":\"76672\",\"nomCom\":\"Serqueux\",\"NOM_COM\":\"SERQUEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54532,49.6279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21388,\"INSEE_Comm\":\"76617\",\"nomCom\":\"Saint-Martin-du-Vivier\",\"NOM_COM\":\"SAINT-MARTIN-DU-VIVIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15596,49.47014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21389,\"INSEE_Comm\":\"76178\",\"nomCom\":\"Cl�on\",\"NOM_COM\":\"CLEON\",\"Statut\":\"Communesimple\",\"idCan\":\"7661\",\"nomCan\":\"Caudebec-l�s-Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":87,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0398,49.31653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21390,\"INSEE_Comm\":\"80230\",\"nomCom\":\"Curchy\",\"NOM_COM\":\"CURCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86871,49.77907]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21391,\"INSEE_Comm\":\"60178\",\"nomCom\":\"Cr�vecoeur-le-Grand\",\"NOM_COM\":\"CREVECOEUR-LE-GRAND\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":268,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08489,49.61254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21392,\"INSEE_Comm\":\"60275\",\"nomCom\":\"Glatigny\",\"NOM_COM\":\"GLATIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90088,49.4954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21393,\"INSEE_Comm\":\"60126\",\"nomCom\":\"Cannectancourt\",\"NOM_COM\":\"CANNECTANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89622,49.54837]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21394,\"INSEE_Comm\":\"60203\",\"nomCom\":\"Duvy\",\"NOM_COM\":\"DUVY\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8488,49.23227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21395,\"INSEE_Comm\":\"27405\",\"nomCom\":\"Mesnil-sous-Vienne\",\"NOM_COM\":\"MESNIL-SOUS-VIENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66758,49.38523]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21396,\"INSEE_Comm\":\"80459\",\"nomCom\":\"Laleu\",\"NOM_COM\":\"LALEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93579,49.94241]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21397,\"INSEE_Comm\":\"80667\",\"nomCom\":\"Remaugies\",\"NOM_COM\":\"REMAUGIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67049,49.62706]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21398,\"INSEE_Comm\":\"60262\",\"nomCom\":\"Frestoy-Vaux\",\"NOM_COM\":\"LEFRESTOY-VAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60833,49.59629]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21416,\"INSEE_Comm\":\"80642\",\"nomCom\":\"Prouville\",\"NOM_COM\":\"PROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12946,50.15574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21417,\"INSEE_Comm\":\"80133\",\"nomCom\":\"Brailly-Cornehotte\",\"NOM_COM\":\"BRAILLY-CORNEHOTTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95816,50.22432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21433,\"INSEE_Comm\":\"76568\",\"nomCom\":\"Saint-Clair-sur-les-Monts\",\"NOM_COM\":\"SAINT-CLAIR-SUR-LES-MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78452,49.60209]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21437,\"INSEE_Comm\":\"76225\",\"nomCom\":\"�cretteville-l�s-Baons\",\"NOM_COM\":\"ECRETTEVILLE-LES-BAONS\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67254,49.6298]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21438,\"INSEE_Comm\":\"76304\",\"nomCom\":\"Gonfreville-Caillot\",\"NOM_COM\":\"GONFREVILLE-CAILLOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44025,49.65203]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21439,\"INSEE_Comm\":\"76021\",\"nomCom\":\"Annouville-Vilmesnil\",\"NOM_COM\":\"ANNOUVILLE-VILMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43168,49.67946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21440,\"INSEE_Comm\":\"76593\",\"nomCom\":\"Saint-Jean-de-la-Neuville\",\"NOM_COM\":\"SAINT-JEAN-DE-LA-NEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4283,49.57497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21441,\"INSEE_Comm\":\"76592\",\"nomCom\":\"Saint-Jean-de-Folleville\",\"NOM_COM\":\"SAINT-JEAN-DE-FOLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49948,49.50505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21464,\"INSEE_Comm\":\"27691\",\"nomCom\":\"Villers-sur-le-Roule\",\"NOM_COM\":\"VILLERS-SUR-LE-ROULE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3195,49.19117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21479,\"INSEE_Comm\":\"78278\",\"nomCom\":\"Goupilli�res\",\"NOM_COM\":\"GOUPILLIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7668,48.88112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21480,\"INSEE_Comm\":\"28274\",\"nomCom\":\"Moutiers\",\"NOM_COM\":\"MOUTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76453,48.29567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21489,\"INSEE_Comm\":\"14144\",\"nomCom\":\"Caumont-sur-Orne\",\"NOM_COM\":\"CAUMONT-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47082,48.95104]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21491,\"INSEE_Comm\":\"14249\",\"nomCom\":\"Esquay-Notre-Dame\",\"NOM_COM\":\"ESQUAY-NOTRE-DAME\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":190,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47101,49.11282]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21495,\"INSEE_Comm\":\"60139\",\"nomCom\":\"Chambly\",\"NOM_COM\":\"CHAMBLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":576,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24681,49.17167]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21496,\"INSEE_Comm\":\"95313\",\"nomCom\":\"Isle-Adam\",\"NOM_COM\":\"L'ISLE-ADAM\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9514\",\"nomCan\":\"Isle-Adam\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":284,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23436,49.10722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21497,\"INSEE_Comm\":\"95212\",\"nomCom\":\"�piais-l�s-Louvres\",\"NOM_COM\":\"EPIAIS-LES-LOUVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54884,49.03019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21498,\"INSEE_Comm\":\"14027\",\"nomCom\":\"Aunay-sur-Odon\",\"NOM_COM\":\"AUNAY-SUR-ODON\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":316,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.63391,49.01447]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21503,\"INSEE_Comm\":\"80186\",\"nomCom\":\"Chaulnes\",\"NOM_COM\":\"CHAULNES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80154,49.81694]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21504,\"INSEE_Comm\":\"80769\",\"nomCom\":\"Treux\",\"NOM_COM\":\"TREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59162,49.95138]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21505,\"INSEE_Comm\":\"80347\",\"nomCom\":\"Fransart\",\"NOM_COM\":\"FRANSART\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77385,49.76862]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21506,\"INSEE_Comm\":\"80206\",\"nomCom\":\"Contalmaison\",\"NOM_COM\":\"CONTALMAISON\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73562,50.02939]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21507,\"INSEE_Comm\":\"80003\",\"nomCom\":\"Acheux-en-Ami�nois\",\"NOM_COM\":\"ACHEUX-EN-AMIENOIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53118,50.07156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21510,\"INSEE_Comm\":\"80687\",\"nomCom\":\"Rubescourt\",\"NOM_COM\":\"RUBESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57572,49.61002]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21511,\"INSEE_Comm\":\"80350\",\"nomCom\":\"Franvillers\",\"NOM_COM\":\"FRANVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49988,49.97014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21513,\"INSEE_Comm\":\"80331\",\"nomCom\":\"Forest-l'Abbaye\",\"NOM_COM\":\"FOREST-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83243,50.2033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21515,\"INSEE_Comm\":\"14264\",\"nomCom\":\"Ferri�re-Harang\",\"NOM_COM\":\"LAFERRIERE-HARANG\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.88652,48.97007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21526,\"INSEE_Comm\":\"14460\",\"nomCom\":\"Moyaux\",\"NOM_COM\":\"MOYAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35124,49.195]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21540,\"INSEE_Comm\":\"14174\",\"nomCom\":\"Cond�-sur-Noireau\",\"NOM_COM\":\"CONDE-SUR-NOIREAU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56258,48.84965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21574,\"INSEE_Comm\":\"60181\",\"nomCom\":\"Crisolles\",\"NOM_COM\":\"CRISOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02421,49.62307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21596,\"INSEE_Comm\":\"28121\",\"nomCom\":\"Dambron\",\"NOM_COM\":\"DAMBRON\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87194,48.11632]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21603,\"INSEE_Comm\":\"28155\",\"nomCom\":\"Fontaine-les-Ribouts\",\"NOM_COM\":\"FONTAINE-LES-RIBOUTS\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2476,48.65505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21607,\"INSEE_Comm\":\"95641\",\"nomCom\":\"V�mars\",\"NOM_COM\":\"VEMARS\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":249,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56723,49.06286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21609,\"INSEE_Comm\":\"80489\",\"nomCom\":\"Longueau\",\"NOM_COM\":\"LONGUEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"8010\",\"nomCan\":\"Amiens4e(Est)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":203,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35699,49.87251]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21630,\"INSEE_Comm\":\"61113\",\"nomCom\":\"Comblot\",\"NOM_COM\":\"COMBLOT\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58614,48.46049]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21642,\"INSEE_Comm\":\"14193\",\"nomCom\":\"Courtonne-la-Meurdrac\",\"NOM_COM\":\"COURTONNE-LA-MEURDRAC\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32906,49.12024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21650,\"INSEE_Comm\":\"28298\",\"nomCom\":\"Pierres\",\"NOM_COM\":\"PIERRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":126,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55201,48.58929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21671,\"INSEE_Comm\":\"28318\",\"nomCom\":\"Romilly-sur-Aigre\",\"NOM_COM\":\"ROMILLY-SUR-AIGRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28298,47.98017]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21677,\"INSEE_Comm\":\"80175\",\"nomCom\":\"Carnoy\",\"NOM_COM\":\"CARNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75529,49.98636]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21686,\"INSEE_Comm\":\"60437\",\"nomCom\":\"Mouchy-le-Ch�tel\",\"NOM_COM\":\"MOUCHY-LE-CHATEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24607,49.32471]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21689,\"INSEE_Comm\":\"27050\",\"nomCom\":\"Beaumontel\",\"NOM_COM\":\"BEAUMONTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78082,49.09562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21691,\"INSEE_Comm\":\"27177\",\"nomCom\":\"Coudres\",\"NOM_COM\":\"COUDRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23567,48.86307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21694,\"INSEE_Comm\":\"27037\",\"nomCom\":\"Barc\",\"NOM_COM\":\"BARC\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":103,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82474,49.07946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21696,\"INSEE_Comm\":\"27566\",\"nomCom\":\"Sainte-Marguerite-en-Ouche\",\"NOM_COM\":\"SAINTE-MARGUERITE-EN-OUCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6517,49.01966]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21697,\"INSEE_Comm\":\"14292\",\"nomCom\":\"Friardel\",\"NOM_COM\":\"FRIARDEL\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38823,48.99874]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21702,\"INSEE_Comm\":\"61510\",\"nomCom\":\"Vitrai-sous-Laigle\",\"NOM_COM\":\"VITRAI-SOUS-LAIGLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70886,48.71627]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21705,\"INSEE_Comm\":\"27165\",\"nomCom\":\"Conches-en-Ouche\",\"NOM_COM\":\"CONCHES-EN-OUCHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":505,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.932,48.95473]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21707,\"INSEE_Comm\":\"27149\",\"nomCom\":\"Chapelle-Hareng\",\"NOM_COM\":\"LACHAPELLE-HARENG\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41717,49.1114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21719,\"INSEE_Comm\":\"14256\",\"nomCom\":\"�tr�ham\",\"NOM_COM\":\"ETREHAM\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.79413,49.32103]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21720,\"INSEE_Comm\":\"78053\",\"nomCom\":\"B�houst\",\"NOM_COM\":\"BEHOUST\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72424,48.8324]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21721,\"INSEE_Comm\":\"14639\",\"nomCom\":\"Saint-Ouen-le-Pin\",\"NOM_COM\":\"SAINT-OUEN-LE-PIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10378,49.15084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21722,\"INSEE_Comm\":\"14493\",\"nomCom\":\"Percy-en-Auge\",\"NOM_COM\":\"PERCY-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.06009,49.05979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21723,\"INSEE_Comm\":\"14669\",\"nomCom\":\"Sassy\",\"NOM_COM\":\"SASSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.13928,48.98571]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21724,\"INSEE_Comm\":\"14289\",\"nomCom\":\"Fresn�-la-M�re\",\"NOM_COM\":\"FRESNE-LA-MERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12514,48.88791]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21725,\"INSEE_Comm\":\"14531\",\"nomCom\":\"Rapilly\",\"NOM_COM\":\"RAPILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34383,48.85695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21729,\"INSEE_Comm\":\"14626\",\"nomCom\":\"Saint-Martin-de-Mailloc\",\"NOM_COM\":\"SAINT-MARTIN-DE-MAILLOC\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28644,49.08841]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21748,\"INSEE_Comm\":\"78497\",\"nomCom\":\"Poigny-la-For�t\",\"NOM_COM\":\"POIGNY-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7544,48.68293]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21750,\"INSEE_Comm\":\"78644\",\"nomCom\":\"Verri�re\",\"NOM_COM\":\"LAVERRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7834\",\"nomCan\":\"Maurepas\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95133,48.75459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21777,\"INSEE_Comm\":\"14660\",\"nomCom\":\"Saint-Vaast-en-Auge\",\"NOM_COM\":\"SAINT-VAAST-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00233,49.29055]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21778,\"INSEE_Comm\":\"76694\",\"nomCom\":\"Tocqueville-en-Caux\",\"NOM_COM\":\"TOCQUEVILLE-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90968,49.78336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21779,\"INSEE_Comm\":\"76496\",\"nomCom\":\"Penly\",\"NOM_COM\":\"PENLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23197,49.97625]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21780,\"INSEE_Comm\":\"76188\",\"nomCom\":\"Cott�vrard\",\"NOM_COM\":\"COTTEVRARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22391,49.63963]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21781,\"INSEE_Comm\":\"27013\",\"nomCom\":\"Amfreville-sous-les-Monts\",\"NOM_COM\":\"AMFREVILLE-SOUS-LES-MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26638,49.30282]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21782,\"INSEE_Comm\":\"76028\",\"nomCom\":\"Aub�guimont\",\"NOM_COM\":\"AUBEGUIMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67975,49.80949]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21783,\"INSEE_Comm\":\"80481\",\"nomCom\":\"Lihons\",\"NOM_COM\":\"LIHONS\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75595,49.82817]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21784,\"INSEE_Comm\":\"80703\",\"nomCom\":\"Saint-Germain-sur-Bresle\",\"NOM_COM\":\"SAINT-GERMAIN-SUR-BRESLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74609,49.82684]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21785,\"INSEE_Comm\":\"60365\",\"nomCom\":\"Lihus\",\"NOM_COM\":\"LIHUS\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03926,49.60463]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21786,\"INSEE_Comm\":\"60469\",\"nomCom\":\"Novillers\",\"NOM_COM\":\"NOVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21657,49.26936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21787,\"INSEE_Comm\":\"60407\",\"nomCom\":\"Monceaux-l'Abbaye\",\"NOM_COM\":\"MONCEAUX-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78844,49.65242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21788,\"INSEE_Comm\":\"80078\",\"nomCom\":\"Bellancourt\",\"NOM_COM\":\"BELLANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8001\",\"nomCan\":\"Abbeville-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91271,50.09274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21789,\"INSEE_Comm\":\"60357\",\"nomCom\":\"L�glantiers\",\"NOM_COM\":\"LEGLANTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53214,49.49867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21790,\"INSEE_Comm\":\"60004\",\"nomCom\":\"Achy\",\"NOM_COM\":\"ACHY\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97186,49.55622]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21791,\"INSEE_Comm\":\"80099\",\"nomCom\":\"Bettencourt-Rivi�re\",\"NOM_COM\":\"BETTENCOURT-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97764,49.9928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21804,\"INSEE_Comm\":\"80602\",\"nomCom\":\"Occoches\",\"NOM_COM\":\"OCCOCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28746,50.18236]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21822,\"INSEE_Comm\":\"76636\",\"nomCom\":\"Saint-Pierre-de-Varengeville\",\"NOM_COM\":\"SAINT-PIERRE-DE-VARENGEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92367,49.5016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21828,\"INSEE_Comm\":\"28188\",\"nomCom\":\"Gu�-de-Longroi\",\"NOM_COM\":\"LEGUE-DE-LONGROI\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70789,48.49127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21844,\"INSEE_Comm\":\"27483\",\"nomCom\":\"Quatremare\",\"NOM_COM\":\"QUATREMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08115,49.18416]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21845,\"INSEE_Comm\":\"27202\",\"nomCom\":\"Daubeuf-pr�s-Vatteville\",\"NOM_COM\":\"DAUBEUF-PRES-VATTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31084,49.26063]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21846,\"INSEE_Comm\":\"27493\",\"nomCom\":\"Romilly-sur-Andelle\",\"NOM_COM\":\"ROMILLY-SUR-ANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":218,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2541,49.33439]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21851,\"INSEE_Comm\":\"80226\",\"nomCom\":\"Croix-Moligneaux\",\"NOM_COM\":\"CROIX-MOLIGNEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00037,49.81967]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21855,\"INSEE_Comm\":\"14344\",\"nomCom\":\"Janville\",\"NOM_COM\":\"JANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.16379,49.16376]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21859,\"INSEE_Comm\":\"78677\",\"nomCom\":\"Villette\",\"NOM_COM\":\"VILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69374,48.92628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21860,\"INSEE_Comm\":\"27438\",\"nomCom\":\"Nonancourt\",\"NOM_COM\":\"NONANCOURT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17932,48.777]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21871,\"INSEE_Comm\":\"60143\",\"nomCom\":\"Chaumont-en-Vexin\",\"NOM_COM\":\"CHAUMONT-EN-VEXIN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88148,49.27323]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21883,\"INSEE_Comm\":\"80308\",\"nomCom\":\"Feuqui�res-en-Vimeu\",\"NOM_COM\":\"FEUQUIERES-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":169,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60287,50.05869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21885,\"INSEE_Comm\":\"76071\",\"nomCom\":\"Bellengreville\",\"NOM_COM\":\"BELLENGREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2278,49.91079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21887,\"INSEE_Comm\":\"80037\",\"nomCom\":\"Aubvillers\",\"NOM_COM\":\"AUBVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47932,49.70857]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21889,\"INSEE_Comm\":\"80190\",\"nomCom\":\"Ch�py\",\"NOM_COM\":\"CHEPY\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64325,50.06448]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21916,\"INSEE_Comm\":\"61445\",\"nomCom\":\"Saint-Pierre-d'Entremont\",\"NOM_COM\":\"SAINT-PIERRE-D'ENTREMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64973,48.8117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21917,\"INSEE_Comm\":\"61287\",\"nomCom\":\"Montilly-sur-Noireau\",\"NOM_COM\":\"MONTILLY-SUR-NOIREAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6115\",\"nomCan\":\"Flers-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57091,48.81454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21918,\"INSEE_Comm\":\"61391\",\"nomCom\":\"Saint-Georges-des-Groseillers\",\"NOM_COM\":\"SAINT-GEORGES-DES-GROSEILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6115\",\"nomCan\":\"Flers-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":210,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56808,48.76722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21920,\"INSEE_Comm\":\"61374\",\"nomCom\":\"Saint-Christophe-de-Chaulieu\",\"NOM_COM\":\"SAINT-CHRISTOPHE-DE-CHAULIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.83156,48.74241]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21927,\"INSEE_Comm\":\"14503\",\"nomCom\":\"Pierres\",\"NOM_COM\":\"PIERRES\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73595,48.86223]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21947,\"INSEE_Comm\":\"80430\",\"nomCom\":\"Herb�court\",\"NOM_COM\":\"HERBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.83976,49.9225]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21953,\"INSEE_Comm\":\"76152\",\"nomCom\":\"Cailly\",\"NOM_COM\":\"CAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22995,49.58622]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21955,\"INSEE_Comm\":\"60477\",\"nomCom\":\"Ons-en-Bray\",\"NOM_COM\":\"ONS-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91904,49.41708]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21974,\"INSEE_Comm\":\"28213\",\"nomCom\":\"Lormaye\",\"NOM_COM\":\"LORMAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5431,48.63892]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":21997,\"INSEE_Comm\":\"61118\",\"nomCom\":\"Corbon\",\"NOM_COM\":\"CORBON\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64265,48.46001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22020,\"INSEE_Comm\":\"14215\",\"nomCom\":\"Cuverville\",\"NOM_COM\":\"CUVERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":137,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26144,49.19178]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22051,\"INSEE_Comm\":\"27505\",\"nomCom\":\"Saint-Agnan-de-Cerni�res\",\"NOM_COM\":\"SAINT-AGNAN-DE-CERNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53152,48.95011]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22054,\"INSEE_Comm\":\"27600\",\"nomCom\":\"Saint-Quentin-des-Isles\",\"NOM_COM\":\"SAINT-QUENTIN-DES-ISLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57615,49.05005]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22056,\"INSEE_Comm\":\"27044\",\"nomCom\":\"Baux-Sainte-Croix\",\"NOM_COM\":\"LESBAUX-SAINTE-CROIX\",\"Statut\":\"Communesimple\",\"idCan\":\"2717\",\"nomCan\":\"�vreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10669,48.96705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22068,\"INSEE_Comm\":\"95572\",\"nomCom\":\"Saint-Ouen-l'Aum�ne\",\"NOM_COM\":\"SAINT-OUEN-L'AUMONE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9521\",\"nomCan\":\"Saint-Ouen-l'Aum�ne\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1562,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12876,49.04432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22069,\"INSEE_Comm\":\"14604\",\"nomCom\":\"Saint-Laurent-du-Mont\",\"NOM_COM\":\"SAINT-LAURENT-DU-MONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02725,49.14043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22070,\"INSEE_Comm\":\"61371\",\"nomCom\":\"Saint-Brice-sous-R�nes\",\"NOM_COM\":\"SAINT-BRICE-SOUS-RANES\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.19346,48.67849]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22071,\"INSEE_Comm\":\"14589\",\"nomCom\":\"Saint-Germain-le-Vasson\",\"NOM_COM\":\"SAINT-GERMAIN-LE-VASSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30143,48.99994]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22072,\"INSEE_Comm\":\"14155\",\"nomCom\":\"Cheffreville-Tonnencourt\",\"NOM_COM\":\"CHEFFREVILLE-TONNENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23314,49.02812]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22073,\"INSEE_Comm\":\"61096\",\"nomCom\":\"Chapelle-d'Andaine\",\"NOM_COM\":\"LACHAPELLE-D'ANDAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4664,48.54375]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22074,\"INSEE_Comm\":\"78310\",\"nomCom\":\"Houdan\",\"NOM_COM\":\"HOUDAN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":192,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59677,48.7989]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22081,\"INSEE_Comm\":\"14135\",\"nomCom\":\"Carcagny\",\"NOM_COM\":\"CARCAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.61427,49.23919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22099,\"INSEE_Comm\":\"60413\",\"nomCom\":\"Montagny-Sainte-F�licit�\",\"NOM_COM\":\"MONTAGNY-SAINTE-FELICITE\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74734,49.12965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22122,\"INSEE_Comm\":\"14170\",\"nomCom\":\"Colomby-sur-Thaon\",\"NOM_COM\":\"COLOMBY-SUR-THAON\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42012,49.26391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22123,\"INSEE_Comm\":\"14723\",\"nomCom\":\"Valsem�\",\"NOM_COM\":\"VALSEME\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0992,49.2377]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22124,\"INSEE_Comm\":\"27639\",\"nomCom\":\"Thuit-Simer\",\"NOM_COM\":\"LETHUIT-SIMER\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91452,49.2678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22125,\"INSEE_Comm\":\"76364\",\"nomCom\":\"Hodeng-Hodenger\",\"NOM_COM\":\"HODENG-HODENGER\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58849,49.53651]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22126,\"INSEE_Comm\":\"76276\",\"nomCom\":\"Forges-les-Eaux\",\"NOM_COM\":\"FORGES-LES-EAUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":177,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53279,49.61179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22127,\"INSEE_Comm\":\"76046\",\"nomCom\":\"Auzouville-sur-Ry\",\"NOM_COM\":\"AUZOUVILLE-SUR-RY\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3096,49.43744]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22128,\"INSEE_Comm\":\"76443\",\"nomCom\":\"Mont-Cauvaire\",\"NOM_COM\":\"MONT-CAUVAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11398,49.57111]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22129,\"INSEE_Comm\":\"76177\",\"nomCom\":\"Claville-Motteville\",\"NOM_COM\":\"CLAVILLE-MOTTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18575,49.58906]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22130,\"INSEE_Comm\":\"80145\",\"nomCom\":\"Brucamps\",\"NOM_COM\":\"BRUCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05279,50.07132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22131,\"INSEE_Comm\":\"76154\",\"nomCom\":\"Campneuseville\",\"NOM_COM\":\"CAMPNEUSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66261,49.86212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22132,\"INSEE_Comm\":\"80202\",\"nomCom\":\"Coisy\",\"NOM_COM\":\"COISY\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.333,49.96546]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22133,\"INSEE_Comm\":\"80693\",\"nomCom\":\"Sailly-Laurette\",\"NOM_COM\":\"SAILLY-LAURETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61569,49.92062]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22134,\"INSEE_Comm\":\"80041\",\"nomCom\":\"Aumont\",\"NOM_COM\":\"AUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92411,49.87879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22135,\"INSEE_Comm\":\"60003\",\"nomCom\":\"Abbeville-Saint-Lucien\",\"NOM_COM\":\"ABBEVILLE-SAINT-LUCIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16637,49.52011]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22136,\"INSEE_Comm\":\"60370\",\"nomCom\":\"Lormaison\",\"NOM_COM\":\"LORMAISON\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10416,49.25472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22137,\"INSEE_Comm\":\"60215\",\"nomCom\":\"Erquery\",\"NOM_COM\":\"ERQUERY\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45645,49.41365]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22138,\"INSEE_Comm\":\"60050\",\"nomCom\":\"Bazicourt\",\"NOM_COM\":\"BAZICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62294,49.34315]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22139,\"INSEE_Comm\":\"60173\",\"nomCom\":\"Cramoisy\",\"NOM_COM\":\"CRAMOISY\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39571,49.24888]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22140,\"INSEE_Comm\":\"60055\",\"nomCom\":\"Beaurains-l�s-Noyon\",\"NOM_COM\":\"BEAURAINS-LES-NOYON\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97532,49.6066]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22141,\"INSEE_Comm\":\"60066\",\"nomCom\":\"B�thancourt-en-Valois\",\"NOM_COM\":\"BETHANCOURT-EN-VALOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.87566,49.27923]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22143,\"INSEE_Comm\":\"80083\",\"nomCom\":\"Bergicourt\",\"NOM_COM\":\"BERGICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02805,49.74446]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22173,\"INSEE_Comm\":\"76534\",\"nomCom\":\"Rolleville\",\"NOM_COM\":\"ROLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21117,49.57875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22174,\"INSEE_Comm\":\"76341\",\"nomCom\":\"Harfleur\",\"NOM_COM\":\"HARFLEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"7663\",\"nomCan\":\"Gonfreville-l'Orcher\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":115,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19705,49.51383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22175,\"INSEE_Comm\":\"76686\",\"nomCom\":\"Theuville-aux-Maillots\",\"NOM_COM\":\"THEUVILLE-AUX-MAILLOTS\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54607,49.76173]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22176,\"INSEE_Comm\":\"76305\",\"nomCom\":\"Gonfreville-l'Orcher\",\"NOM_COM\":\"GONFREVILLE-L'ORCHER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7663\",\"nomCan\":\"Gonfreville-l'Orcher\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":234,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22201,49.48614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22181,\"INSEE_Comm\":\"27115\",\"nomCom\":\"Breux-sur-Avre\",\"NOM_COM\":\"BREUX-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0717,48.76736]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22182,\"INSEE_Comm\":\"28352\",\"nomCom\":\"Saint-Martin-de-Nigelles\",\"NOM_COM\":\"SAINT-MARTIN-DE-NIGELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":101,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61406,48.61316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22191,\"INSEE_Comm\":\"27382\",\"nomCom\":\"Mandeville\",\"NOM_COM\":\"MANDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01292,49.21547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22192,\"INSEE_Comm\":\"95527\",\"nomCom\":\"Roissy-en-France\",\"NOM_COM\":\"ROISSY-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":746,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51421,49.00661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22202,\"INSEE_Comm\":\"27597\",\"nomCom\":\"Saint-Pierre-du-Val\",\"NOM_COM\":\"SAINT-PIERRE-DU-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.36649,49.39089]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22205,\"INSEE_Comm\":\"27097\",\"nomCom\":\"Bouafles\",\"NOM_COM\":\"BOUAFLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38671,49.20132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22223,\"INSEE_Comm\":\"78466\",\"nomCom\":\"Orgeval\",\"NOM_COM\":\"ORGEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7817\",\"nomCan\":\"Poissy-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":189,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96928,48.91649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22224,\"INSEE_Comm\":\"28068\",\"nomCom\":\"Challet\",\"NOM_COM\":\"CHALLET\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42783,48.55572]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22241,\"INSEE_Comm\":\"95680\",\"nomCom\":\"Villiers-le-Bel\",\"NOM_COM\":\"VILLIERS-LE-BEL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9535\",\"nomCan\":\"Villiers-le-Bel\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":641,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40386,49.00845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22243,\"INSEE_Comm\":\"78343\",\"nomCom\":\"Loges-en-Josas\",\"NOM_COM\":\"LESLOGES-EN-JOSAS\",\"Statut\":\"Communesimple\",\"idCan\":\"7829\",\"nomCan\":\"Versailles-Sud\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13912,48.76244]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22252,\"INSEE_Comm\":\"80463\",\"nomCom\":\"Lamotte-Warfus�e\",\"NOM_COM\":\"LAMOTTE-WARFUSEE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59141,49.87533]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22253,\"INSEE_Comm\":\"80064\",\"nomCom\":\"Beaucourt-en-Santerre\",\"NOM_COM\":\"BEAUCOURT-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58624,49.79649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22255,\"INSEE_Comm\":\"80283\",\"nomCom\":\"Esclainvillers\",\"NOM_COM\":\"ESCLAINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39899,49.69032]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22256,\"INSEE_Comm\":\"80505\",\"nomCom\":\"Mametz\",\"NOM_COM\":\"MAMETZ\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.7458,50.00057]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22257,\"INSEE_Comm\":\"80592\",\"nomCom\":\"Neuville-Coppegueule\",\"NOM_COM\":\"NEUVILLE-COPPEGUEULE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73982,49.856]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22258,\"INSEE_Comm\":\"80586\",\"nomCom\":\"Nesle-l'H�pital\",\"NOM_COM\":\"NESLE-L'HOPITAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69288,49.9142]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22259,\"INSEE_Comm\":\"60434\",\"nomCom\":\"Mortemer\",\"NOM_COM\":\"MORTEMER\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67281,49.56888]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22279,\"INSEE_Comm\":\"28324\",\"nomCom\":\"Saint-Arnoult-des-Bois\",\"NOM_COM\":\"SAINT-ARNOULT-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25476,48.4933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22282,\"INSEE_Comm\":\"76373\",\"nomCom\":\"Imbleville\",\"NOM_COM\":\"IMBLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94314,49.71395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22299,\"INSEE_Comm\":\"14539\",\"nomCom\":\"Rocque\",\"NOM_COM\":\"LAROCQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67454,48.88674]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22317,\"INSEE_Comm\":\"76261\",\"nomCom\":\"Fert�-Saint-Samson\",\"NOM_COM\":\"LAFERTE-SAINT-SAMSON\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53689,49.57726]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22323,\"INSEE_Comm\":\"14469\",\"nomCom\":\"Norrey-en-Auge\",\"NOM_COM\":\"NORREY-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.01514,48.9135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22326,\"INSEE_Comm\":\"60531\",\"nomCom\":\"Remy\",\"NOM_COM\":\"REMY\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70305,49.43429]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22330,\"INSEE_Comm\":\"61418\",\"nomCom\":\"Saint-Mard-de-R�no\",\"NOM_COM\":\"SAINT-MARD-DE-RENO\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63418,48.51022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22348,\"INSEE_Comm\":\"28087\",\"nomCom\":\"Ch�taincourt\",\"NOM_COM\":\"CHATAINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23398,48.69262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22361,\"INSEE_Comm\":\"28100\",\"nomCom\":\"Cintray\",\"NOM_COM\":\"CINTRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2829\",\"nomCan\":\"Luc�\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36586,48.44589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22369,\"INSEE_Comm\":\"28289\",\"nomCom\":\"Ormoy\",\"NOM_COM\":\"ORMOY\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47177,48.62435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22407,\"INSEE_Comm\":\"78417\",\"nomCom\":\"Montchauvet\",\"NOM_COM\":\"MONTCHAUVET\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62681,48.89167]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22412,\"INSEE_Comm\":\"27462\",\"nomCom\":\"Planquay\",\"NOM_COM\":\"LEPLANQUAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42695,49.09438]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22414,\"INSEE_Comm\":\"61008\",\"nomCom\":\"Aube\",\"NOM_COM\":\"AUBE\",\"Statut\":\"Communesimple\",\"idCan\":\"6137\",\"nomCan\":\"Aigle-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54559,48.73205]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22415,\"INSEE_Comm\":\"61181\",\"nomCom\":\"Gac�\",\"NOM_COM\":\"GACE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":161,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30845,48.79022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22424,\"INSEE_Comm\":\"76060\",\"nomCom\":\"Beaubec-la-Rosi�re\",\"NOM_COM\":\"BEAUBEC-LA-ROSIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51445,49.6469]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22442,\"INSEE_Comm\":\"78588\",\"nomCom\":\"Saulx-Marchais\",\"NOM_COM\":\"SAULX-MARCHAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83625,48.84618]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22444,\"INSEE_Comm\":\"14119\",\"nomCom\":\"Cagny\",\"NOM_COM\":\"CAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":77,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26047,49.15418]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22445,\"INSEE_Comm\":\"14452\",\"nomCom\":\"Morteaux-Couliboeuf\",\"NOM_COM\":\"MORTEAUX-COULIBOEUF\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08143,48.92395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22446,\"INSEE_Comm\":\"14751\",\"nomCom\":\"Vignats\",\"NOM_COM\":\"VIGNATS\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10233,48.85385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22449,\"INSEE_Comm\":\"14208\",\"nomCom\":\"Croissanville\",\"NOM_COM\":\"CROISSANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10865,49.112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22450,\"INSEE_Comm\":\"14005\",\"nomCom\":\"Airan\",\"NOM_COM\":\"AIRAN\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.14554,49.09532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22451,\"INSEE_Comm\":\"14729\",\"nomCom\":\"Vaudeloges\",\"NOM_COM\":\"VAUDELOGES\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00063,48.94635]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22453,\"INSEE_Comm\":\"61449\",\"nomCom\":\"Saint-Pierre-la-Rivi�re\",\"NOM_COM\":\"SAINT-PIERRE-LA-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18606,48.81544]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22454,\"INSEE_Comm\":\"61480\",\"nomCom\":\"Tanville\",\"NOM_COM\":\"TANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00947,48.56532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22464,\"INSEE_Comm\":\"14159\",\"nomCom\":\"Chouain\",\"NOM_COM\":\"CHOUAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64088,49.20958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22480,\"INSEE_Comm\":\"60079\",\"nomCom\":\"Boissy-Fresnoy\",\"NOM_COM\":\"BOISSY-FRESNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8823,49.16597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22509,\"INSEE_Comm\":\"14700\",\"nomCom\":\"Tour-en-Bessin\",\"NOM_COM\":\"TOUR-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.78377,49.29392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22510,\"INSEE_Comm\":\"27607\",\"nomCom\":\"Saint-Thurien\",\"NOM_COM\":\"SAINT-THURIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55057,49.40314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22511,\"INSEE_Comm\":\"76098\",\"nomCom\":\"Biville-sur-Mer\",\"NOM_COM\":\"BIVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":79,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25458,49.9863]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22512,\"INSEE_Comm\":\"76724\",\"nomCom\":\"Vatierville\",\"NOM_COM\":\"VATIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51841,49.7878]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22513,\"INSEE_Comm\":\"76639\",\"nomCom\":\"Saint-Pierre-Lavis\",\"NOM_COM\":\"SAINT-PIERRE-LAVIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62313,49.66433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22514,\"INSEE_Comm\":\"27522\",\"nomCom\":\"Saint-Christophe-sur-Cond�\",\"NOM_COM\":\"SAINT-CHRISTOPHE-SUR-CONDE\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60069,49.28538]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22515,\"INSEE_Comm\":\"76393\",\"nomCom\":\"Longmesnil\",\"NOM_COM\":\"LONGMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61276,49.62296]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22516,\"INSEE_Comm\":\"76131\",\"nomCom\":\"Bouille\",\"NOM_COM\":\"LABOUILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93326,49.35064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22517,\"INSEE_Comm\":\"76682\",\"nomCom\":\"Sotteville-sous-le-Val\",\"NOM_COM\":\"SOTTEVILLE-SOUS-LE-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7661\",\"nomCan\":\"Caudebec-l�s-Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11638,49.31726]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22518,\"INSEE_Comm\":\"76127\",\"nomCom\":\"Bosc-Roger-sur-Buchy\",\"NOM_COM\":\"BOSC-ROGER-SUR-BUCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.37611,49.58748]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22519,\"INSEE_Comm\":\"76558\",\"nomCom\":\"Saint-Aubin-Celloville\",\"NOM_COM\":\"SAINT-AUBIN-CELLOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16036,49.37546]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22520,\"INSEE_Comm\":\"60285\",\"nomCom\":\"Grandvillers-aux-Bois\",\"NOM_COM\":\"GRANDVILLERS-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60554,49.46415]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22559,\"INSEE_Comm\":\"78276\",\"nomCom\":\"Gommecourt\",\"NOM_COM\":\"GOMMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59431,49.07116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22576,\"INSEE_Comm\":\"27223\",\"nomCom\":\"�preville-en-Roumois\",\"NOM_COM\":\"EPREVILLE-EN-ROUMOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77706,49.31982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22579,\"INSEE_Comm\":\"27257\",\"nomCom\":\"For�t-la-Folie\",\"NOM_COM\":\"FORET-LA-FOLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51723,49.22059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22614,\"INSEE_Comm\":\"80674\",\"nomCom\":\"Rivery\",\"NOM_COM\":\"RIVERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8009\",\"nomCan\":\"Amiens3e(Nord-Est)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":109,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33962,49.91064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22615,\"INSEE_Comm\":\"27671\",\"nomCom\":\"Vannecrocq\",\"NOM_COM\":\"VANNECROCQ\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42828,49.30308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22617,\"INSEE_Comm\":\"28386\",\"nomCom\":\"Thimert-G�telles\",\"NOM_COM\":\"THIMERT-GATELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":102,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26208,48.55497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22637,\"INSEE_Comm\":\"14036\",\"nomCom\":\"Banneville-la-Campagne\",\"NOM_COM\":\"BANNEVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.2244,49.16869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22644,\"INSEE_Comm\":\"14575\",\"nomCom\":\"Saint-�tienne-la-Thillaye\",\"NOM_COM\":\"SAINT-ETIENNE-LA-THILLAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11783,49.29169]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22645,\"INSEE_Comm\":\"80734\",\"nomCom\":\"Sentelie\",\"NOM_COM\":\"SENTELIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02323,49.72095]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22687,\"INSEE_Comm\":\"28261\",\"nomCom\":\"Montigny-le-Chartif\",\"NOM_COM\":\"MONTIGNY-LE-CHARTIF\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1301,48.291]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22708,\"INSEE_Comm\":\"27174\",\"nomCom\":\"Corneville-sur-Risle\",\"NOM_COM\":\"CORNEVILLE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":96,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59851,49.34066]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22740,\"INSEE_Comm\":\"14347\",\"nomCom\":\"Jurques\",\"NOM_COM\":\"JURQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.74573,49.02114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22762,\"INSEE_Comm\":\"80013\",\"nomCom\":\"Airaines\",\"NOM_COM\":\"AIRAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":122,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94513,49.97207]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22781,\"INSEE_Comm\":\"80348\",\"nomCom\":\"Fransu\",\"NOM_COM\":\"FRANSU\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09025,50.11297]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22790,\"INSEE_Comm\":\"28385\",\"nomCom\":\"Thieulin\",\"NOM_COM\":\"LETHIEULIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13977,48.40739]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22822,\"INSEE_Comm\":\"28366\",\"nomCom\":\"Santeuil\",\"NOM_COM\":\"SANTEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74013,48.38288]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22825,\"INSEE_Comm\":\"76327\",\"nomCom\":\"Greuville\",\"NOM_COM\":\"GREUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91003,49.80685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22860,\"INSEE_Comm\":\"80021\",\"nomCom\":\"Amiens\",\"NOM_COM\":\"AMIENS\",\"Statut\":\"Pr?fectureder?gion\",\"idCan\":\"8099\",\"nomCan\":\"Amiens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2320,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29008,49.90095]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22892,\"INSEE_Comm\":\"28376\",\"nomCom\":\"Soiz�\",\"NOM_COM\":\"SOIZE\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89053,48.16914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22903,\"INSEE_Comm\":\"14513\",\"nomCom\":\"Pont-Farcy\",\"NOM_COM\":\"PONT-FARCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.03671,48.94364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22909,\"INSEE_Comm\":\"61209\",\"nomCom\":\"Jou�-du-Bois\",\"NOM_COM\":\"JOUE-DU-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.23117,48.58458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22911,\"INSEE_Comm\":\"61285\",\"nomCom\":\"Montgaroult\",\"NOM_COM\":\"MONTGAROULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.14126,48.75161]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22917,\"INSEE_Comm\":\"60430\",\"nomCom\":\"Morienval\",\"NOM_COM\":\"MORIENVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.93005,49.31047]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22946,\"INSEE_Comm\":\"61394\",\"nomCom\":\"Saint-Germain-de-la-Coudre\",\"NOM_COM\":\"SAINT-GERMAIN-DE-LA-COUDRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59164,48.27174]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22983,\"INSEE_Comm\":\"14136\",\"nomCom\":\"Cardonville\",\"NOM_COM\":\"CARDONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.05376,49.34593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":22984,\"INSEE_Comm\":\"27018\",\"nomCom\":\"Appeville-Annebault\",\"NOM_COM\":\"APPEVILLE-ANNEBAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":74,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65105,49.32227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23031,\"INSEE_Comm\":\"80447\",\"nomCom\":\"Hyencourt-le-Grand\",\"NOM_COM\":\"HYENCOURT-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.83681,49.82237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23108,\"INSEE_Comm\":\"28130\",\"nomCom\":\"Digny\",\"NOM_COM\":\"DIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13542,48.52874]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23115,\"INSEE_Comm\":\"80090\",\"nomCom\":\"Berny-en-Santerre\",\"NOM_COM\":\"BERNY-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85058,49.86655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23116,\"INSEE_Comm\":\"80575\",\"nomCom\":\"Moufli�res\",\"NOM_COM\":\"MOUFLIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74241,49.92586]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23130,\"INSEE_Comm\":\"78502\",\"nomCom\":\"Port-Marly\",\"NOM_COM\":\"LEPORT-MARLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7813\",\"nomCan\":\"Marly-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":197,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10904,48.88048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23131,\"INSEE_Comm\":\"78481\",\"nomCom\":\"Pecq\",\"NOM_COM\":\"LEPECQ\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7835\",\"nomCan\":\"Pecq\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":35,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10503,48.89362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23132,\"INSEE_Comm\":\"28177\",\"nomCom\":\"Gellainville\",\"NOM_COM\":\"GELLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2825\",\"nomCan\":\"Chartres-Sud-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":81,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5353,48.41622]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23133,\"INSEE_Comm\":\"28411\",\"nomCom\":\"Villars\",\"NOM_COM\":\"VILLARS\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54414,48.23113]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23134,\"INSEE_Comm\":\"28383\",\"nomCom\":\"Theuville\",\"NOM_COM\":\"THEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59155,48.33262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23144,\"INSEE_Comm\":\"14150\",\"nomCom\":\"Cesny-Bois-Halbout\",\"NOM_COM\":\"CESNY-BOIS-HALBOUT\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39452,48.9853]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23153,\"INSEE_Comm\":\"95445\",\"nomCom\":\"Nerville-la-For�t\",\"NOM_COM\":\"NERVILLE-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"9514\",\"nomCan\":\"Isle-Adam\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27625,49.09035]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23154,\"INSEE_Comm\":\"95487\",\"nomCom\":\"Persan\",\"NOM_COM\":\"PERSAN\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":295,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26978,49.14975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23155,\"INSEE_Comm\":\"95594\",\"nomCom\":\"Seugy\",\"NOM_COM\":\"SEUGY\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39479,49.12302]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23156,\"INSEE_Comm\":\"95509\",\"nomCom\":\"Puiseux-en-France\",\"NOM_COM\":\"PUISEUX-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":104,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48852,49.06685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23157,\"INSEE_Comm\":\"95210\",\"nomCom\":\"Enghien-les-Bains\",\"NOM_COM\":\"ENGHIEN-LES-BAINS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9509\",\"nomCan\":\"Enghien-les-Bains\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":139,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30486,48.97016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23159,\"INSEE_Comm\":\"14037\",\"nomCom\":\"Banneville-sur-Ajon\",\"NOM_COM\":\"BANNEVILLE-SUR-AJON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56801,49.06153]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23164,\"INSEE_Comm\":\"60183\",\"nomCom\":\"Croissy-sur-Celle\",\"NOM_COM\":\"CROISSY-SUR-CELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17214,49.69036]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23165,\"INSEE_Comm\":\"80346\",\"nomCom\":\"Franqueville\",\"NOM_COM\":\"FRANQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09661,50.09536]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23166,\"INSEE_Comm\":\"80101\",\"nomCom\":\"Beuvraignes\",\"NOM_COM\":\"BEUVRAIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.776,49.63814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23172,\"INSEE_Comm\":\"80550\",\"nomCom\":\"Mirvaux\",\"NOM_COM\":\"MIRVAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39763,50.00306]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23173,\"INSEE_Comm\":\"76171\",\"nomCom\":\"Chapelle-Saint-Ouen\",\"NOM_COM\":\"LACHAPELLE-SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42853,49.52191]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23180,\"INSEE_Comm\":\"95134\",\"nomCom\":\"Champagne-sur-Oise\",\"NOM_COM\":\"CHAMPAGNE-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":194,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22802,49.14278]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23214,\"INSEE_Comm\":\"78537\",\"nomCom\":\"Saint-Arnoult-en-Yvelines\",\"NOM_COM\":\"SAINT-ARNOULT-EN-YVELINES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":289,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93464,48.57252]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23246,\"INSEE_Comm\":\"76736\",\"nomCom\":\"Veulettes-sur-Mer\",\"NOM_COM\":\"VEULETTES-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58769,49.84519]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23247,\"INSEE_Comm\":\"14248\",\"nomCom\":\"Espins\",\"NOM_COM\":\"ESPINS\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41466,48.99968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23256,\"INSEE_Comm\":\"61213\",\"nomCom\":\"Lalacelle\",\"NOM_COM\":\"LALACELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12763,48.46931]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23257,\"INSEE_Comm\":\"14069\",\"nomCom\":\"Beuvillers\",\"NOM_COM\":\"BEUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":150,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24963,49.12619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23280,\"INSEE_Comm\":\"61481\",\"nomCom\":\"Telli�res-le-Plessis\",\"NOM_COM\":\"TELLIERES-LE-PLESSIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39411,48.62111]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23293,\"INSEE_Comm\":\"27327\",\"nomCom\":\"Hectomare\",\"NOM_COM\":\"HECTOMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94436,49.19274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23301,\"INSEE_Comm\":\"27517\",\"nomCom\":\"Saint-Aubin-sur-Gaillon\",\"NOM_COM\":\"SAINT-AUBIN-SUR-GAILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":135,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33624,49.13284]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23304,\"INSEE_Comm\":\"61475\",\"nomCom\":\"Soligny-la-Trappe\",\"NOM_COM\":\"SOLIGNY-LA-TRAPPE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54901,48.62714]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23324,\"INSEE_Comm\":\"27368\",\"nomCom\":\"Lignerolles\",\"NOM_COM\":\"LIGNEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27334,48.84472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23326,\"INSEE_Comm\":\"60150\",\"nomCom\":\"Chiry-Ourscamp\",\"NOM_COM\":\"CHIRY-OURSCAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97101,49.53031]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23331,\"INSEE_Comm\":\"27266\",\"nomCom\":\"Franqueville\",\"NOM_COM\":\"FRANQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68581,49.17305]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23345,\"INSEE_Comm\":\"14659\",\"nomCom\":\"Saint-Sylvain\",\"NOM_COM\":\"SAINT-SYLVAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":145,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.21558,49.05319]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23346,\"INSEE_Comm\":\"14075\",\"nomCom\":\"Bissi�res\",\"NOM_COM\":\"BISSIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08969,49.11366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23348,\"INSEE_Comm\":\"61256\",\"nomCom\":\"M�davy\",\"NOM_COM\":\"MEDAVY\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07868,48.67309]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23354,\"INSEE_Comm\":\"14547\",\"nomCom\":\"Rubercy\",\"NOM_COM\":\"RUBERCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.88632,49.28529]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23377,\"INSEE_Comm\":\"78087\",\"nomCom\":\"Bonnelles\",\"NOM_COM\":\"BONNELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02963,48.61819]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23403,\"INSEE_Comm\":\"14008\",\"nomCom\":\"Amblie\",\"NOM_COM\":\"AMBLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5015,49.28483]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23404,\"INSEE_Comm\":\"27550\",\"nomCom\":\"Saint-Gr�goire-du-Vi�vre\",\"NOM_COM\":\"SAINT-GREGOIRE-DU-VIEVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62595,49.24515]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23405,\"INSEE_Comm\":\"27209\",\"nomCom\":\"�caquelon\",\"NOM_COM\":\"ECAQUELON\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71695,49.28875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23406,\"INSEE_Comm\":\"76731\",\"nomCom\":\"V�nestanville\",\"NOM_COM\":\"VENESTANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89868,49.79394]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23407,\"INSEE_Comm\":\"76158\",\"nomCom\":\"Canville-les-Deux-�glises\",\"NOM_COM\":\"CANVILLE-LES-DEUX-EGLISES\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83632,49.77452]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23408,\"INSEE_Comm\":\"76717\",\"nomCom\":\"Val-de-la-Haye\",\"NOM_COM\":\"VAL-DE-LA-HAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99005,49.38619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23409,\"INSEE_Comm\":\"27407\",\"nomCom\":\"Mesnil-Verclives\",\"NOM_COM\":\"MESNIL-VERCLIVES\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46543,49.32275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23410,\"INSEE_Comm\":\"76429\",\"nomCom\":\"Mesnil-Esnard\",\"NOM_COM\":\"LEMESNIL-ESNARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":799,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14529,49.41354]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23411,\"INSEE_Comm\":\"76049\",\"nomCom\":\"Avesnes-en-Val\",\"NOM_COM\":\"AVESNES-EN-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40812,49.91782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23412,\"INSEE_Comm\":\"80797\",\"nomCom\":\"Villers-aux-�rables\",\"NOM_COM\":\"VILLERS-AUX-ERABLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52888,49.79185]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23413,\"INSEE_Comm\":\"80433\",\"nomCom\":\"Herly\",\"NOM_COM\":\"HERLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.87305,49.75251]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23414,\"INSEE_Comm\":\"60427\",\"nomCom\":\"Monts\",\"NOM_COM\":\"MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00089,49.2188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23415,\"INSEE_Comm\":\"80340\",\"nomCom\":\"Fourcigny\",\"NOM_COM\":\"FOURCIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82507,49.75213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23416,\"INSEE_Comm\":\"60292\",\"nomCom\":\"Gury\",\"NOM_COM\":\"GURY\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80143,49.57034]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23417,\"INSEE_Comm\":\"60568\",\"nomCom\":\"Saint-Aubin-sous-Erquery\",\"NOM_COM\":\"SAINT-AUBIN-SOUS-ERQUERY\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49005,49.41236]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23418,\"INSEE_Comm\":\"60042\",\"nomCom\":\"Bailleval\",\"NOM_COM\":\"BAILLEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46589,49.34941]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23419,\"INSEE_Comm\":\"60238\",\"nomCom\":\"Fleurines\",\"NOM_COM\":\"FLEURINES\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5926,49.26232]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23420,\"INSEE_Comm\":\"60258\",\"nomCom\":\"Fresni�res\",\"NOM_COM\":\"FRESNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8091,49.62286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23421,\"INSEE_Comm\":\"60687\",\"nomCom\":\"Villers-sur-Auchy\",\"NOM_COM\":\"VILLERS-SUR-AUCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79231,49.47617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23422,\"INSEE_Comm\":\"80725\",\"nomCom\":\"Salou�l\",\"NOM_COM\":\"SALOUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":360,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24182,49.86993]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23437,\"INSEE_Comm\":\"80161\",\"nomCom\":\"Cahon\",\"NOM_COM\":\"CAHON\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72902,50.1197]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23440,\"INSEE_Comm\":\"76594\",\"nomCom\":\"Saint-Jean-du-Cardonnay\",\"NOM_COM\":\"SAINT-JEAN-DU-CARDONNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01072,49.49972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23449,\"INSEE_Comm\":\"76599\",\"nomCom\":\"Saint-L�ger-du-Bourg-Denis\",\"NOM_COM\":\"SAINT-LEGER-DU-BOURG-DENIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":135,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16345,49.43003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23456,\"INSEE_Comm\":\"76135\",\"nomCom\":\"Bouville\",\"NOM_COM\":\"BOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89477,49.55712]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23457,\"INSEE_Comm\":\"76405\",\"nomCom\":\"Man�houville\",\"NOM_COM\":\"MANEHOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06743,49.83217]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23458,\"INSEE_Comm\":\"76072\",\"nomCom\":\"Belleville-en-Caux\",\"NOM_COM\":\"BELLEVILLE-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9889,49.7044]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23459,\"INSEE_Comm\":\"76529\",\"nomCom\":\"Riville\",\"NOM_COM\":\"RIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56369,49.72293]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23463,\"INSEE_Comm\":\"27017\",\"nomCom\":\"Angerville-la-Campagne\",\"NOM_COM\":\"ANGERVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2717\",\"nomCan\":\"�vreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.15705,48.98897]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23475,\"INSEE_Comm\":\"27344\",\"nomCom\":\"Houlbec-pr�s-le-Gros-Theil\",\"NOM_COM\":\"HOULBEC-PRES-LE-GROS-THEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82699,49.25117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23476,\"INSEE_Comm\":\"27064\",\"nomCom\":\"Berville-sur-Mer\",\"NOM_COM\":\"BERVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35767,49.43086]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23478,\"INSEE_Comm\":\"27533\",\"nomCom\":\"Saint-Denis-le-Ferment\",\"NOM_COM\":\"SAINT-DENIS-LE-FERMENT\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71779,49.32182]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23490,\"INSEE_Comm\":\"14333\",\"nomCom\":\"Honfleur\",\"NOM_COM\":\"HONFLEUR\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":490,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23766,49.41277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23492,\"INSEE_Comm\":\"76055\",\"nomCom\":\"Baons-le-Comte\",\"NOM_COM\":\"BAONS-LE-COMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76098,49.63908]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23493,\"INSEE_Comm\":\"78402\",\"nomCom\":\"M�zi�res-sur-Seine\",\"NOM_COM\":\"MEZIERES-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78287,48.95343]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23494,\"INSEE_Comm\":\"78267\",\"nomCom\":\"Gargenville\",\"NOM_COM\":\"GARGENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":223,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81069,48.99314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23495,\"INSEE_Comm\":\"28027\",\"nomCom\":\"Bazoche-Gouet\",\"NOM_COM\":\"LABAZOCHE-GOUET\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97067,48.14001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23497,\"INSEE_Comm\":\"27636\",\"nomCom\":\"Thuit-Anger\",\"NOM_COM\":\"LETHUIT-ANGER\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97014,49.26679]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23501,\"INSEE_Comm\":\"14713\",\"nomCom\":\"Trois-Monts\",\"NOM_COM\":\"TROIS-MONTS\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47904,49.04885]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23513,\"INSEE_Comm\":\"95241\",\"nomCom\":\"Fontenay-en-Parisis\",\"NOM_COM\":\"FONTENAY-EN-PARISIS\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":82,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44539,49.05012]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23514,\"INSEE_Comm\":\"95149\",\"nomCom\":\"Chaumontel\",\"NOM_COM\":\"CHAUMONTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":79,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43644,49.129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23517,\"INSEE_Comm\":\"78128\",\"nomCom\":\"Cernay-la-Ville\",\"NOM_COM\":\"CERNAY-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95971,48.66964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23521,\"INSEE_Comm\":\"80080\",\"nomCom\":\"Belloy-en-Santerre\",\"NOM_COM\":\"BELLOY-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85996,49.88465]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23522,\"INSEE_Comm\":\"80359\",\"nomCom\":\"Fresnoy-l�s-Roye\",\"NOM_COM\":\"FRESNOY-LES-ROYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77943,49.74083]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23523,\"INSEE_Comm\":\"60035\",\"nomCom\":\"Avricourt\",\"NOM_COM\":\"AVRICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86403,49.64961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23524,\"INSEE_Comm\":\"60555\",\"nomCom\":\"Rouvroy-les-Merles\",\"NOM_COM\":\"ROUVROY-LES-MERLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35917,49.65097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23525,\"INSEE_Comm\":\"80100\",\"nomCom\":\"Bettencourt-Saint-Ouen\",\"NOM_COM\":\"BETTENCOURT-SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12226,50.01753]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23526,\"INSEE_Comm\":\"80076\",\"nomCom\":\"B�hen\",\"NOM_COM\":\"BEHEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76199,50.05126]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23527,\"INSEE_Comm\":\"80085\",\"nomCom\":\"Bern�tre\",\"NOM_COM\":\"BERNATRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09784,50.19423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23541,\"INSEE_Comm\":\"95388\",\"nomCom\":\"Menucourt\",\"NOM_COM\":\"MENUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9539\",\"nomCan\":\"Hautil\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":222,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97468,49.02754]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23579,\"INSEE_Comm\":\"60537\",\"nomCom\":\"Rib�court-Dreslincourt\",\"NOM_COM\":\"RIBECOURT-DRESLINCOURT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":111,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91863,49.52249]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23626,\"INSEE_Comm\":\"61388\",\"nomCom\":\"Saint-Fulgent-des-Ormes\",\"NOM_COM\":\"SAINT-FULGENT-DES-ORMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45306,48.32044]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23636,\"INSEE_Comm\":\"60144\",\"nomCom\":\"Chaven�on\",\"NOM_COM\":\"CHAVENCON\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99194,49.18731]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23642,\"INSEE_Comm\":\"61053\",\"nomCom\":\"Bonsmoulins\",\"NOM_COM\":\"BONSMOULINS\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54174,48.65839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23645,\"INSEE_Comm\":\"27611\",\"nomCom\":\"Saint-Vigor\",\"NOM_COM\":\"SAINT-VIGOR\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26003,49.07518]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23648,\"INSEE_Comm\":\"27501\",\"nomCom\":\"Rouvray\",\"NOM_COM\":\"ROUVRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2740\",\"nomCan\":\"Vernon-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33965,49.06687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23650,\"INSEE_Comm\":\"28273\",\"nomCom\":\"Moulhard\",\"NOM_COM\":\"MOULHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01238,48.21262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23655,\"INSEE_Comm\":\"28044\",\"nomCom\":\"Boisgasson\",\"NOM_COM\":\"BOISGASSON\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14021,48.04929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23665,\"INSEE_Comm\":\"28240\",\"nomCom\":\"Meauc�\",\"NOM_COM\":\"MEAUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98537,48.48436]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23677,\"INSEE_Comm\":\"80183\",\"nomCom\":\"Cerisy-Buleux\",\"NOM_COM\":\"CERISY-BULEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73719,49.97312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23705,\"INSEE_Comm\":\"61054\",\"nomCom\":\"Bosc-Renoult\",\"NOM_COM\":\"LEBOSC-RENOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30957,48.91562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23707,\"INSEE_Comm\":\"14172\",\"nomCom\":\"Commes\",\"NOM_COM\":\"COMMES\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73901,49.335]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23710,\"INSEE_Comm\":\"95450\",\"nomCom\":\"Neuville-sur-Oise\",\"NOM_COM\":\"NEUVILLE-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9539\",\"nomCan\":\"Hautil\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06334,49.01694]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23712,\"INSEE_Comm\":\"61163\",\"nomCom\":\"Ferri�re-aux-�tangs\",\"NOM_COM\":\"LAFERRIERE-AUX-ETANGS\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5086,48.65155]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23713,\"INSEE_Comm\":\"14245\",\"nomCom\":\"Ernes\",\"NOM_COM\":\"ERNES\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12517,49.01137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23714,\"INSEE_Comm\":\"14473\",\"nomCom\":\"Notre-Dame-de-Livaye\",\"NOM_COM\":\"NOTRE-DAME-DE-LIVAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04129,49.11789]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23717,\"INSEE_Comm\":\"14663\",\"nomCom\":\"Saint-Vigor-le-Grand\",\"NOM_COM\":\"SAINT-VIGOR-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":157,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67686,49.28772]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23718,\"INSEE_Comm\":\"76491\",\"nomCom\":\"Ouville-l'Abbaye\",\"NOM_COM\":\"OUVILLE-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86654,49.69445]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23728,\"INSEE_Comm\":\"14465\",\"nomCom\":\"Nonant\",\"NOM_COM\":\"NONANT\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64775,49.23681]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23734,\"INSEE_Comm\":\"95110\",\"nomCom\":\"Brignancourt\",\"NOM_COM\":\"BRIGNANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94356,49.13925]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23739,\"INSEE_Comm\":\"60101\",\"nomCom\":\"Br�gy\",\"NOM_COM\":\"BREGY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.87414,49.08958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23763,\"INSEE_Comm\":\"14453\",\"nomCom\":\"Mosles\",\"NOM_COM\":\"MOSLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.82052,49.30546]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23764,\"INSEE_Comm\":\"14239\",\"nomCom\":\"Englesqueville-la-Perc�e\",\"NOM_COM\":\"ENGLESQUEVILLE-LA-PERCEE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.95138,49.37941]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23765,\"INSEE_Comm\":\"76583\",\"nomCom\":\"Saint-Germain-sous-Cailly\",\"NOM_COM\":\"SAINT-GERMAIN-SOUS-CAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20932,49.57863]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23766,\"INSEE_Comm\":\"76326\",\"nomCom\":\"Greny\",\"NOM_COM\":\"GRENY\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30267,49.94519]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23767,\"INSEE_Comm\":\"80307\",\"nomCom\":\"Feuill�res\",\"NOM_COM\":\"FEUILLERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85152,49.94134]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23768,\"INSEE_Comm\":\"60366\",\"nomCom\":\"Litz\",\"NOM_COM\":\"LITZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32354,49.42628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23769,\"INSEE_Comm\":\"60220\",\"nomCom\":\"Espaubourg\",\"NOM_COM\":\"ESPAUBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86555,49.42413]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23770,\"INSEE_Comm\":\"60038\",\"nomCom\":\"Bachivillers\",\"NOM_COM\":\"BACHIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96821,49.28708]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23771,\"INSEE_Comm\":\"60416\",\"nomCom\":\"Montg�rain\",\"NOM_COM\":\"MONTGERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58374,49.53845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23772,\"INSEE_Comm\":\"60204\",\"nomCom\":\"�cuvilly\",\"NOM_COM\":\"ECUVILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91674,49.64737]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23773,\"INSEE_Comm\":\"80157\",\"nomCom\":\"Bussy-l�s-Poix\",\"NOM_COM\":\"BUSSY-LES-POIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01371,49.81742]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23776,\"INSEE_Comm\":\"60236\",\"nomCom\":\"Flavy-le-Meldeux\",\"NOM_COM\":\"FLAVY-LE-MELDEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04756,49.68515]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23794,\"INSEE_Comm\":\"78638\",\"nomCom\":\"Vaux-sur-Seine\",\"NOM_COM\":\"VAUX-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":176,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9745,49.00958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23795,\"INSEE_Comm\":\"76290\",\"nomCom\":\"Frichemesnil\",\"NOM_COM\":\"FRICHEMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13254,49.62037]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23805,\"INSEE_Comm\":\"76091\",\"nomCom\":\"Beuzeville-la-Gu�rard\",\"NOM_COM\":\"BEUZEVILLE-LA-GUERARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61289,49.70997]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23806,\"INSEE_Comm\":\"76104\",\"nomCom\":\"Blosseville\",\"NOM_COM\":\"BLOSSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80192,49.85171]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23807,\"INSEE_Comm\":\"76758\",\"nomCom\":\"Yvetot\",\"NOM_COM\":\"YVETOT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":293,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7617,49.61751]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23813,\"INSEE_Comm\":\"78506\",\"nomCom\":\"Prunay-en-Yvelines\",\"NOM_COM\":\"PRUNAY-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80514,48.52675]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23814,\"INSEE_Comm\":\"28009\",\"nomCom\":\"Ardelu\",\"NOM_COM\":\"ARDELU\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91258,48.3549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23819,\"INSEE_Comm\":\"27041\",\"nomCom\":\"Barre-en-Ouche\",\"NOM_COM\":\"LABARRE-EN-OUCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66408,48.94534]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23832,\"INSEE_Comm\":\"27101\",\"nomCom\":\"Bouquelon\",\"NOM_COM\":\"BOUQUELON\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49146,49.39951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23854,\"INSEE_Comm\":\"60131\",\"nomCom\":\"Catheux\",\"NOM_COM\":\"CATHEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10546,49.64942]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23864,\"INSEE_Comm\":\"14254\",\"nomCom\":\"�terville\",\"NOM_COM\":\"ETERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":198,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4286,49.14783]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23866,\"INSEE_Comm\":\"78383\",\"nomCom\":\"Maurepas\",\"NOM_COM\":\"MAUREPAS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7834\",\"nomCan\":\"Maurepas\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":54,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92404,48.76984]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23869,\"INSEE_Comm\":\"80449\",\"nomCom\":\"Ignaucourt\",\"NOM_COM\":\"IGNAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57617,49.81798]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23870,\"INSEE_Comm\":\"80814\",\"nomCom\":\"Vr�ly\",\"NOM_COM\":\"VRELY\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68673,49.79664]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23872,\"INSEE_Comm\":\"80207\",\"nomCom\":\"Contay\",\"NOM_COM\":\"CONTAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46811,50.00982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23873,\"INSEE_Comm\":\"60474\",\"nomCom\":\"Ognolles\",\"NOM_COM\":\"OGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91408,49.68827]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23874,\"INSEE_Comm\":\"80262\",\"nomCom\":\"Eaucourt-sur-Somme\",\"NOM_COM\":\"EAUCOURT-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8002\",\"nomCan\":\"Abbeville-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88827,50.06825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23880,\"INSEE_Comm\":\"80245\",\"nomCom\":\"Doml�ger-Longvillers\",\"NOM_COM\":\"DOMLEGER-LONGVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08732,50.15501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23889,\"INSEE_Comm\":\"28119\",\"nomCom\":\"Croix-du-Perche\",\"NOM_COM\":\"LACROIX-DU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04195,48.2812]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23897,\"INSEE_Comm\":\"14549\",\"nomCom\":\"Rully\",\"NOM_COM\":\"RULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.71535,48.82852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23935,\"INSEE_Comm\":\"61280\",\"nomCom\":\"Monceaux-au-Perche\",\"NOM_COM\":\"MONCEAUX-AU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70885,48.50373]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23943,\"INSEE_Comm\":\"14734\",\"nomCom\":\"Vendes\",\"NOM_COM\":\"VENDES\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60112,49.142]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23968,\"INSEE_Comm\":\"28021\",\"nomCom\":\"Bailleau-le-Pin\",\"NOM_COM\":\"BAILLEAU-LE-PIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32281,48.35906]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23970,\"INSEE_Comm\":\"28263\",\"nomCom\":\"Montigny-sur-Avre\",\"NOM_COM\":\"MONTIGNY-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01209,48.72039]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23984,\"INSEE_Comm\":\"28316\",\"nomCom\":\"Rohaire\",\"NOM_COM\":\"ROHAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83955,48.66674]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23988,\"INSEE_Comm\":\"61125\",\"nomCom\":\"Coulonges-les-Sablons\",\"NOM_COM\":\"COULONGES-LES-SABLONS\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91112,48.39921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23997,\"INSEE_Comm\":\"28048\",\"nomCom\":\"Bourdini�re-Saint-Loup\",\"NOM_COM\":\"LABOURDINIERE-SAINT-LOUP\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4302,48.31701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":23998,\"INSEE_Comm\":\"28326\",\"nomCom\":\"Saint-Avit-les-Guespi�res\",\"NOM_COM\":\"SAINT-AVIT-LES-GUESPIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26276,48.2685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24008,\"INSEE_Comm\":\"27123\",\"nomCom\":\"Caillouet-Orgeville\",\"NOM_COM\":\"CAILLOUET-ORGEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3164,49.00341]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24009,\"INSEE_Comm\":\"27277\",\"nomCom\":\"Garenci�res\",\"NOM_COM\":\"GARENCIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25678,48.9497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24015,\"INSEE_Comm\":\"27688\",\"nomCom\":\"Villalet\",\"NOM_COM\":\"VILLALET\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05759,48.93022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24018,\"INSEE_Comm\":\"27119\",\"nomCom\":\"Bueil\",\"NOM_COM\":\"BUEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":74,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44435,48.93434]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24021,\"INSEE_Comm\":\"28193\",\"nomCom\":\"Havelu\",\"NOM_COM\":\"HAVELU\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53388,48.78775]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24022,\"INSEE_Comm\":\"78474\",\"nomCom\":\"Orvilliers\",\"NOM_COM\":\"ORVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":97,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64252,48.85481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24025,\"INSEE_Comm\":\"61288\",\"nomCom\":\"Montmerrei\",\"NOM_COM\":\"MONTMERREI\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03187,48.63059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24028,\"INSEE_Comm\":\"61383\",\"nomCom\":\"Saint-Didier-sous-�couves\",\"NOM_COM\":\"SAINT-DIDIER-SOUS-ECOUVES\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04036,48.54115]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24029,\"INSEE_Comm\":\"61357\",\"nomCom\":\"Rouperroux\",\"NOM_COM\":\"ROUPERROUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0783,48.54862]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24030,\"INSEE_Comm\":\"14334\",\"nomCom\":\"H�tellerie\",\"NOM_COM\":\"L'HOTELLERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40713,49.14098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24032,\"INSEE_Comm\":\"76210\",\"nomCom\":\"Dampierre-Saint-Nicolas\",\"NOM_COM\":\"DAMPIERRE-SAINT-NICOLAS\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20369,49.85728]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24040,\"INSEE_Comm\":\"95042\",\"nomCom\":\"Baillet-en-France\",\"NOM_COM\":\"BAILLET-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30243,49.05876]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24044,\"INSEE_Comm\":\"76113\",\"nomCom\":\"Boissay\",\"NOM_COM\":\"BOISSAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35986,49.51833]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24045,\"INSEE_Comm\":\"14039\",\"nomCom\":\"Barbery\",\"NOM_COM\":\"BARBERY\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":90,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34532,49.01422]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24046,\"INSEE_Comm\":\"14674\",\"nomCom\":\"Soignolles\",\"NOM_COM\":\"SOIGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.21661,49.02936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24047,\"INSEE_Comm\":\"61333\",\"nomCom\":\"Pontchardon\",\"NOM_COM\":\"PONTCHARDON\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26244,48.9302]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24048,\"INSEE_Comm\":\"61004\",\"nomCom\":\"Antoigny\",\"NOM_COM\":\"ANTOIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36393,48.52794]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24049,\"INSEE_Comm\":\"61236\",\"nomCom\":\"Louc�\",\"NOM_COM\":\"LOUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10297,48.69715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24076,\"INSEE_Comm\":\"60090\",\"nomCom\":\"Bouconvillers\",\"NOM_COM\":\"BOUCONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90035,49.17345]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24080,\"INSEE_Comm\":\"14278\",\"nomCom\":\"Fontenay-le-Pesnel\",\"NOM_COM\":\"FONTENAY-LE-PESNEL\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58043,49.1736]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24081,\"INSEE_Comm\":\"60092\",\"nomCom\":\"Boullarre\",\"NOM_COM\":\"BOULLARRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.0099,49.13048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24102,\"INSEE_Comm\":\"14243\",\"nomCom\":\"�quemauville\",\"NOM_COM\":\"EQUEMAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":115,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21012,49.40328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24103,\"INSEE_Comm\":\"14205\",\"nomCom\":\"Cristot\",\"NOM_COM\":\"CRISTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57086,49.19418]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24104,\"INSEE_Comm\":\"76553\",\"nomCom\":\"Sainte-Agathe-d'Aliermont\",\"NOM_COM\":\"SAINTE-AGATHE-D'ALIERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3385,49.82513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24105,\"INSEE_Comm\":\"76257\",\"nomCom\":\"Fallencourt\",\"NOM_COM\":\"FALLENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56703,49.86411]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24106,\"INSEE_Comm\":\"76581\",\"nomCom\":\"Saint-Germain-des-Essourts\",\"NOM_COM\":\"SAINT-GERMAIN-DES-ESSOURTS\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31579,49.53376]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24107,\"INSEE_Comm\":\"27370\",\"nomCom\":\"Lisors\",\"NOM_COM\":\"LISORS\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47326,49.35799]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24108,\"INSEE_Comm\":\"80669\",\"nomCom\":\"Rethonvillers\",\"NOM_COM\":\"RETHONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.85529,49.7363]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24109,\"INSEE_Comm\":\"60249\",\"nomCom\":\"Foulangues\",\"NOM_COM\":\"FOULANGUES\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31406,49.27686]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24110,\"INSEE_Comm\":\"60570\",\"nomCom\":\"Saint-Cr�pin-Ibouvillers\",\"NOM_COM\":\"SAINT-CREPIN-IBOUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06757,49.25948]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24111,\"INSEE_Comm\":\"80026\",\"nomCom\":\"Arguel\",\"NOM_COM\":\"ARGUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80744,49.87658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24112,\"INSEE_Comm\":\"76332\",\"nomCom\":\"Grumesnil\",\"NOM_COM\":\"GRUMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69328,49.62048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24113,\"INSEE_Comm\":\"60187\",\"nomCom\":\"Cuigy-en-Bray\",\"NOM_COM\":\"CUIGY-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83507,49.43233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24114,\"INSEE_Comm\":\"60382\",\"nomCom\":\"Margny-l�s-Compi�gne\",\"NOM_COM\":\"MARGNY-LES-COMPIEGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6009\",\"nomCan\":\"Compi�gne-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":630,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80608,49.43269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24115,\"INSEE_Comm\":\"60523\",\"nomCom\":\"Rainvillers\",\"NOM_COM\":\"RAINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99836,49.40705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24116,\"INSEE_Comm\":\"60539\",\"nomCom\":\"Rieux\",\"NOM_COM\":\"RIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51253,49.30001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24117,\"INSEE_Comm\":\"80757\",\"nomCom\":\"Thoix\",\"NOM_COM\":\"THOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06447,49.70397]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24118,\"INSEE_Comm\":\"60120\",\"nomCom\":\"Cambronne-l�s-Clermont\",\"NOM_COM\":\"CAMBRONNE-LES-CLERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40112,49.32598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24119,\"INSEE_Comm\":\"80093\",\"nomCom\":\"Berteaucourt-les-Dames\",\"NOM_COM\":\"BERTEAUCOURT-LES-DAMES\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15714,50.04179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24133,\"INSEE_Comm\":\"80609\",\"nomCom\":\"Oneux\",\"NOM_COM\":\"ONEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98063,50.14829]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24157,\"INSEE_Comm\":\"76708\",\"nomCom\":\"Toussaint\",\"NOM_COM\":\"TOUSSAINT\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43975,49.73682]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24175,\"INSEE_Comm\":\"27661\",\"nomCom\":\"Trinit�-de-Thouberville\",\"NOM_COM\":\"LATRINITE-DE-THOUBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87757,49.36496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24180,\"INSEE_Comm\":\"27441\",\"nomCom\":\"Notre-Dame-d'�pine\",\"NOM_COM\":\"NOTRE-DAME-D'EPINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59749,49.19465]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24181,\"INSEE_Comm\":\"27321\",\"nomCom\":\"Haye-le-Comte\",\"NOM_COM\":\"LAHAYE-LE-COMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13413,49.19643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24182,\"INSEE_Comm\":\"27426\",\"nomCom\":\"Neaufles-Saint-Martin\",\"NOM_COM\":\"NEAUFLES-SAINT-MARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":59,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72635,49.27733]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24183,\"INSEE_Comm\":\"27330\",\"nomCom\":\"Herqueville\",\"NOM_COM\":\"HERQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27346,49.24381]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24184,\"INSEE_Comm\":\"27015\",\"nomCom\":\"And�\",\"NOM_COM\":\"ANDE\",\"Statut\":\"Communesimple\",\"idCan\":\"2721\",\"nomCan\":\"Louviers-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24536,49.22803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24196,\"INSEE_Comm\":\"28218\",\"nomCom\":\"Luc�\",\"NOM_COM\":\"LUCE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2829\",\"nomCan\":\"Luc�\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":393,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45278,48.43478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24197,\"INSEE_Comm\":\"28045\",\"nomCom\":\"Boissy-en-Drouais\",\"NOM_COM\":\"BOISSY-EN-DROUAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25197,48.72882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24198,\"INSEE_Comm\":\"28104\",\"nomCom\":\"Coltainville\",\"NOM_COM\":\"COLTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59663,48.49195]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24212,\"INSEE_Comm\":\"95566\",\"nomCom\":\"Saint-Martin-du-Tertre\",\"NOM_COM\":\"SAINT-MARTIN-DU-TERTRE\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":89,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33446,49.10393]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24216,\"INSEE_Comm\":\"95369\",\"nomCom\":\"Margency\",\"NOM_COM\":\"MARGENCY\",\"Statut\":\"Communesimple\",\"idCan\":\"9524\",\"nomCan\":\"Soisy-sous-Montmorency\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":126,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28907,49.00149]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24217,\"INSEE_Comm\":\"78528\",\"nomCom\":\"Rolleboise\",\"NOM_COM\":\"ROLLEBOISE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60184,49.01919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24224,\"INSEE_Comm\":\"80524\",\"nomCom\":\"M�haricourt\",\"NOM_COM\":\"MEHARICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73104,49.79679]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24225,\"INSEE_Comm\":\"80571\",\"nomCom\":\"Morisel\",\"NOM_COM\":\"MORISEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45935,49.76504]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24229,\"INSEE_Comm\":\"80149\",\"nomCom\":\"Buigny-Saint-Maclou\",\"NOM_COM\":\"BUIGNY-SAINT-MACLOU\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82,50.15287]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24230,\"INSEE_Comm\":\"80171\",\"nomCom\":\"Caours\",\"NOM_COM\":\"CAOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"8001\",\"nomCan\":\"Abbeville-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88114,50.12805]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24280,\"INSEE_Comm\":\"14756\",\"nomCom\":\"Villette\",\"NOM_COM\":\"LAVILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5432,48.90904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24288,\"INSEE_Comm\":\"14491\",\"nomCom\":\"Parfouru-sur-Odon\",\"NOM_COM\":\"PARFOURU-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60883,49.08898]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24290,\"INSEE_Comm\":\"28221\",\"nomCom\":\"Lumeau\",\"NOM_COM\":\"LUMEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77761,48.10676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24308,\"INSEE_Comm\":\"80253\",\"nomCom\":\"Doullens\",\"NOM_COM\":\"DOULLENS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":225,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34719,50.16318]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24318,\"INSEE_Comm\":\"61012\",\"nomCom\":\"Auguaise\",\"NOM_COM\":\"AUGUAISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55158,48.6981]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24338,\"INSEE_Comm\":\"28032\",\"nomCom\":\"Beauvilliers\",\"NOM_COM\":\"BEAUVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65377,48.30061]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24353,\"INSEE_Comm\":\"28096\",\"nomCom\":\"Chauss�e-d'Ivry\",\"NOM_COM\":\"LACHAUSSEE-D'IVRY\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48819,48.8887]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24356,\"INSEE_Comm\":\"61392\",\"nomCom\":\"Saint-Germain-d'Aunay\",\"NOM_COM\":\"SAINT-GERMAIN-D'AUNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38161,48.92902]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24362,\"INSEE_Comm\":\"14184\",\"nomCom\":\"Cottun\",\"NOM_COM\":\"COTTUN\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.78576,49.26795]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24369,\"INSEE_Comm\":\"27491\",\"nomCom\":\"Roman\",\"NOM_COM\":\"ROMAN\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04582,48.8363]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24372,\"INSEE_Comm\":\"61503\",\"nomCom\":\"Vieux-Pont\",\"NOM_COM\":\"VIEUX-PONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15146,48.6497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24373,\"INSEE_Comm\":\"14074\",\"nomCom\":\"Billy\",\"NOM_COM\":\"BILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.19495,49.08882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24377,\"INSEE_Comm\":\"61009\",\"nomCom\":\"Aubry-en-Exmes\",\"NOM_COM\":\"AUBRY-EN-EXMES\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0714,48.79447]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24378,\"INSEE_Comm\":\"61399\",\"nomCom\":\"Saint-Gervais-des-Sablons\",\"NOM_COM\":\"SAINT-GERVAIS-DES-SABLONS\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07339,48.90144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24383,\"INSEE_Comm\":\"76070\",\"nomCom\":\"Bellencombre\",\"NOM_COM\":\"BELLENCOMBRE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23601,49.71782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24396,\"INSEE_Comm\":\"95554\",\"nomCom\":\"Saint-Gervais\",\"NOM_COM\":\"SAINT-GERVAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76172,49.16671]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24401,\"INSEE_Comm\":\"60094\",\"nomCom\":\"Boursonne\",\"NOM_COM\":\"BOURSONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04668,49.19831]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24413,\"INSEE_Comm\":\"76334\",\"nomCom\":\"Gueures\",\"NOM_COM\":\"GUEURES\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95206,49.84226]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24414,\"INSEE_Comm\":\"76085\",\"nomCom\":\"Bertreville-Saint-Ouen\",\"NOM_COM\":\"BERTREVILLE-SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04322,49.81231]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24415,\"INSEE_Comm\":\"76195\",\"nomCom\":\"Criquetot-le-Mauconduit\",\"NOM_COM\":\"CRIQUETOT-LE-MAUCONDUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56218,49.79016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24416,\"INSEE_Comm\":\"76316\",\"nomCom\":\"Grainville-sur-Ry\",\"NOM_COM\":\"GRAINVILLE-SUR-RY\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30032,49.47487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24417,\"INSEE_Comm\":\"76377\",\"nomCom\":\"Isneauville\",\"NOM_COM\":\"ISNEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7660\",\"nomCan\":\"Bois-Guillaume-Bihorel\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":163,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14482,49.50218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24418,\"INSEE_Comm\":\"76426\",\"nomCom\":\"M�sangueville\",\"NOM_COM\":\"MESANGUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56955,49.55748]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24419,\"INSEE_Comm\":\"60476\",\"nomCom\":\"Om�court\",\"NOM_COM\":\"OMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83402,49.61667]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24420,\"INSEE_Comm\":\"60375\",\"nomCom\":\"Maimbeville\",\"NOM_COM\":\"MAIMBEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52205,49.41478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24421,\"INSEE_Comm\":\"60119\",\"nomCom\":\"Cambronne-l�s-Rib�court\",\"NOM_COM\":\"CAMBRONNE-LES-RIBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89805,49.50614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24422,\"INSEE_Comm\":\"60625\",\"nomCom\":\"Suzoy\",\"NOM_COM\":\"SUZOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.93918,49.58286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24423,\"INSEE_Comm\":\"80771\",\"nomCom\":\"Ugny-l'�quip�e\",\"NOM_COM\":\"UGNY-L'EQUIPEE\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06721,49.81482]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24430,\"INSEE_Comm\":\"60037\",\"nomCom\":\"Baboeuf\",\"NOM_COM\":\"BABOEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09131,49.58201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24451,\"INSEE_Comm\":\"78092\",\"nomCom\":\"Bougival\",\"NOM_COM\":\"BOUGIVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7803\",\"nomCan\":\"Celle-Saint-Cloud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":97,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13761,48.8636]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24458,\"INSEE_Comm\":\"76296\",\"nomCom\":\"Gainneville\",\"NOM_COM\":\"GAINNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7663\",\"nomCan\":\"Gonfreville-l'Orcher\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":183,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25547,49.51774]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24459,\"INSEE_Comm\":\"76620\",\"nomCom\":\"Saint-Martin-l'Hortier\",\"NOM_COM\":\"SAINT-MARTIN-L'HORTIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40341,49.74583]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24463,\"INSEE_Comm\":\"76647\",\"nomCom\":\"Saint-Romain-de-Colbosc\",\"NOM_COM\":\"SAINT-ROMAIN-DE-COLBOSC\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":64,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.36383,49.52862]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24474,\"INSEE_Comm\":\"27295\",\"nomCom\":\"Grand-Camp\",\"NOM_COM\":\"GRAND-CAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53372,49.04406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24475,\"INSEE_Comm\":\"27700\",\"nomCom\":\"Vraiville\",\"NOM_COM\":\"VRAIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03655,49.21758]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24500,\"INSEE_Comm\":\"27656\",\"nomCom\":\"Toutainville\",\"NOM_COM\":\"TOUTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":89,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45868,49.35663]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24502,\"INSEE_Comm\":\"27274\",\"nomCom\":\"Gaillardbois-Cressenville\",\"NOM_COM\":\"GAILLARDBOIS-CRESSENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39979,49.3392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24511,\"INSEE_Comm\":\"78440\",\"nomCom\":\"Mureaux\",\"NOM_COM\":\"LESMUREAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":318,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91364,48.98881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24512,\"INSEE_Comm\":\"60656\",\"nomCom\":\"Varinfroy\",\"NOM_COM\":\"VARINFROY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04802,49.09402]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24513,\"INSEE_Comm\":\"28098\",\"nomCom\":\"Cherisy\",\"NOM_COM\":\"CHERISY\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43471,48.75671]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24520,\"INSEE_Comm\":\"14590\",\"nomCom\":\"Sainte-Honorine-de-Ducy\",\"NOM_COM\":\"SAINTE-HONORINE-DE-DUCY\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.78551,49.1373]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24522,\"INSEE_Comm\":\"14519\",\"nomCom\":\"Pr�aux-Bocage\",\"NOM_COM\":\"PREAUX-BOCAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50921,49.05263]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24526,\"INSEE_Comm\":\"61436\",\"nomCom\":\"Sainte-Opportune\",\"NOM_COM\":\"SAINTE-OPPORTUNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41124,48.73605]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24531,\"INSEE_Comm\":\"95612\",\"nomCom\":\"Thillay\",\"NOM_COM\":\"LETHILLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":132,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46948,49.00426]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24533,\"INSEE_Comm\":\"14707\",\"nomCom\":\"Tourville-sur-Odon\",\"NOM_COM\":\"TOURVILLE-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50066,49.13706]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24534,\"INSEE_Comm\":\"78486\",\"nomCom\":\"Perray-en-Yvelines\",\"NOM_COM\":\"LEPERRAY-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":268,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84356,48.6968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24539,\"INSEE_Comm\":\"80097\",\"nomCom\":\"B�thencourt-sur-Somme\",\"NOM_COM\":\"BETHENCOURT-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95729,49.79265]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24540,\"INSEE_Comm\":\"80683\",\"nomCom\":\"Rouy-le-Grand\",\"NOM_COM\":\"ROUY-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94949,49.77977]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24542,\"INSEE_Comm\":\"80052\",\"nomCom\":\"Baizieux\",\"NOM_COM\":\"BAIZIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51256,49.99048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24544,\"INSEE_Comm\":\"80384\",\"nomCom\":\"Grandcourt\",\"NOM_COM\":\"GRANDCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71124,50.06956]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24546,\"INSEE_Comm\":\"80252\",\"nomCom\":\"Douilly\",\"NOM_COM\":\"DOUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05835,49.79692]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24590,\"INSEE_Comm\":\"80597\",\"nomCom\":\"Nibas\",\"NOM_COM\":\"NIBAS\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58862,50.09448]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24603,\"INSEE_Comm\":\"76317\",\"nomCom\":\"Grainville-Ymauville\",\"NOM_COM\":\"GRAINVILLE-YMAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41305,49.65402]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24604,\"INSEE_Comm\":\"27289\",\"nomCom\":\"Goulafri�re\",\"NOM_COM\":\"LAGOULAFRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43232,48.94807]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24629,\"INSEE_Comm\":\"28178\",\"nomCom\":\"Germainville\",\"NOM_COM\":\"GERMAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47749,48.74505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24640,\"INSEE_Comm\":\"14637\",\"nomCom\":\"Saint-Ouen-du-Mesnil-Oger\",\"NOM_COM\":\"SAINT-OUEN-DU-MESNIL-OGER\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.11525,49.15764]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24646,\"INSEE_Comm\":\"76011\",\"nomCom\":\"Ancretteville-sur-Mer\",\"NOM_COM\":\"ANCRETTEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5042,49.78927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24651,\"INSEE_Comm\":\"28132\",\"nomCom\":\"Donnemain-Saint-Mam�s\",\"NOM_COM\":\"DONNEMAIN-SAINT-MAMES\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36974,48.1004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24657,\"INSEE_Comm\":\"27309\",\"nomCom\":\"Habit\",\"NOM_COM\":\"L'HABIT\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34773,48.87485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24658,\"INSEE_Comm\":\"27421\",\"nomCom\":\"Mousseaux-Neuville\",\"NOM_COM\":\"MOUSSEAUX-NEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33849,48.90687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24666,\"INSEE_Comm\":\"61336\",\"nomCom\":\"Pouvrai\",\"NOM_COM\":\"POUVRAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51953,48.27942]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24685,\"INSEE_Comm\":\"28036\",\"nomCom\":\"Berch�res-sur-Vesgre\",\"NOM_COM\":\"BERCHERES-SUR-VESGRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55304,48.84379]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24706,\"INSEE_Comm\":\"78242\",\"nomCom\":\"Fontenay-le-Fleury\",\"NOM_COM\":\"FONTENAY-LE-FLEURY\",\"Statut\":\"Communesimple\",\"idCan\":\"7836\",\"nomCan\":\"Saint-Cyr-l'�cole\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":181,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04662,48.8178]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24707,\"INSEE_Comm\":\"95658\",\"nomCom\":\"Vigny\",\"NOM_COM\":\"VIGNY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92992,49.08017]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24709,\"INSEE_Comm\":\"14404\",\"nomCom\":\"Martainville\",\"NOM_COM\":\"MARTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35026,48.94747]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24711,\"INSEE_Comm\":\"61198\",\"nomCom\":\"Guerquesalles\",\"NOM_COM\":\"GUERQUESALLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21584,48.90073]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24767,\"INSEE_Comm\":\"14066\",\"nomCom\":\"Berni�res-sur-Mer\",\"NOM_COM\":\"BERNIERES-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":183,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41783,49.31904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24768,\"INSEE_Comm\":\"14733\",\"nomCom\":\"Vaux-sur-Seulles\",\"NOM_COM\":\"VAUX-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62754,49.26171]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24769,\"INSEE_Comm\":\"14093\",\"nomCom\":\"Branville\",\"NOM_COM\":\"BRANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02337,49.26919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24770,\"INSEE_Comm\":\"27541\",\"nomCom\":\"Saint-Georges-du-Mesnil\",\"NOM_COM\":\"SAINT-GEORGES-DU-MESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56657,49.21076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24771,\"INSEE_Comm\":\"76545\",\"nomCom\":\"Rouxmesnil-Bouteilles\",\"NOM_COM\":\"ROUXMESNIL-BOUTEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":57,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09934,49.89997]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24772,\"INSEE_Comm\":\"76430\",\"nomCom\":\"Mesnil-Follemprise\",\"NOM_COM\":\"MESNIL-FOLLEMPRISE\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30109,49.76314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24773,\"INSEE_Comm\":\"76175\",\"nomCom\":\"Clais\",\"NOM_COM\":\"CLAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47364,49.81392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24774,\"INSEE_Comm\":\"76664\",\"nomCom\":\"Sasseville\",\"NOM_COM\":\"SASSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6908,49.78299]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24775,\"INSEE_Comm\":\"76569\",\"nomCom\":\"Sainte-Colombe\",\"NOM_COM\":\"SAINTE-COLOMBE\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76182,49.79638]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24776,\"INSEE_Comm\":\"76509\",\"nomCom\":\"Pr�aux\",\"NOM_COM\":\"PREAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21625,49.48705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24777,\"INSEE_Comm\":\"80490\",\"nomCom\":\"Longueval\",\"NOM_COM\":\"LONGUEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.799,50.03043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24778,\"INSEE_Comm\":\"80560\",\"nomCom\":\"Montauban-de-Picardie\",\"NOM_COM\":\"MONTAUBAN-DE-PICARDIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78122,50.0072]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24779,\"INSEE_Comm\":\"80625\",\"nomCom\":\"Pierrepont-sur-Avre\",\"NOM_COM\":\"PIERREPONT-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55128,49.70686]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24780,\"INSEE_Comm\":\"80204\",\"nomCom\":\"Combles\",\"NOM_COM\":\"COMBLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.87396,50.01009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24781,\"INSEE_Comm\":\"80531\",\"nomCom\":\"M�ricourt-en-Vimeu\",\"NOM_COM\":\"MERICOURT-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94624,49.89436]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24782,\"INSEE_Comm\":\"80480\",\"nomCom\":\"Ligni�res-en-Vimeu\",\"NOM_COM\":\"LIGNIERES-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74568,49.91019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24783,\"INSEE_Comm\":\"60691\",\"nomCom\":\"Villers-Vermont\",\"NOM_COM\":\"VILLERS-VERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72878,49.57436]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24784,\"INSEE_Comm\":\"60369\",\"nomCom\":\"Longueil-Sainte-Marie\",\"NOM_COM\":\"LONGUEIL-SAINTE-MARIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":127,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71146,49.34006]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24785,\"INSEE_Comm\":\"60223\",\"nomCom\":\"Estr�es-Saint-Denis\",\"NOM_COM\":\"ESTREES-SAINT-DENIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":155,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62955,49.42635]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24786,\"INSEE_Comm\":\"60256\",\"nomCom\":\"Fresneaux-Montchevreuil\",\"NOM_COM\":\"FRESNEAUX-MONTCHEVREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01045,49.28838]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24787,\"INSEE_Comm\":\"76612\",\"nomCom\":\"Saint-Martin-au-Bosc\",\"NOM_COM\":\"SAINT-MARTIN-AU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66867,49.83163]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24788,\"INSEE_Comm\":\"80302\",\"nomCom\":\"Faverolles\",\"NOM_COM\":\"FAVEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61943,49.64556]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24791,\"INSEE_Comm\":\"60593\",\"nomCom\":\"Saint-Pierre-l�s-Bitry\",\"NOM_COM\":\"SAINT-PIERRE-LES-BITRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.08507,49.43146]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24806,\"INSEE_Comm\":\"80705\",\"nomCom\":\"Saint-L�ger-l�s-Authie\",\"NOM_COM\":\"SAINT-LEGER-LES-AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51346,50.12724]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24820,\"INSEE_Comm\":\"76759\",\"nomCom\":\"Yville-sur-Seine\",\"NOM_COM\":\"YVILLE-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88283,49.41264]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24822,\"INSEE_Comm\":\"28039\",\"nomCom\":\"B�ville-le-Comte\",\"NOM_COM\":\"BEVILLE-LE-COMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70331,48.44022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24823,\"INSEE_Comm\":\"78251\",\"nomCom\":\"Fourqueux\",\"NOM_COM\":\"FOURQUEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7835\",\"nomCan\":\"Pecq\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":64,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05563,48.88533]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24827,\"INSEE_Comm\":\"27099\",\"nomCom\":\"Boulay-Morin\",\"NOM_COM\":\"LEBOULAY-MORIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":56,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1874,49.07634]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24828,\"INSEE_Comm\":\"27070\",\"nomCom\":\"Boisemont\",\"NOM_COM\":\"BOISEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49019,49.29254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24829,\"INSEE_Comm\":\"27567\",\"nomCom\":\"Sainte-Marie-de-Vatimesnil\",\"NOM_COM\":\"SAINTE-MARIE-DE-VATIMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58233,49.27218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24861,\"INSEE_Comm\":\"28351\",\"nomCom\":\"Saint-Maixme-Hauterive\",\"NOM_COM\":\"SAINT-MAIXME-HAUTERIVE\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19006,48.59303]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24863,\"INSEE_Comm\":\"28031\",\"nomCom\":\"Beaumont-les-Autels\",\"NOM_COM\":\"BEAUMONT-LES-AUTELS\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95224,48.23962]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24864,\"INSEE_Comm\":\"28049\",\"nomCom\":\"Bonc�\",\"NOM_COM\":\"BONCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51717,48.30771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24869,\"INSEE_Comm\":\"61234\",\"nomCom\":\"Lonrai\",\"NOM_COM\":\"LONRAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03647,48.4531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24870,\"INSEE_Comm\":\"14376\",\"nomCom\":\"Longraye\",\"NOM_COM\":\"LONGRAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.70089,49.15527]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24871,\"INSEE_Comm\":\"80450\",\"nomCom\":\"Inval-Boiron\",\"NOM_COM\":\"INVAL-BOIRON\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74688,49.8813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24874,\"INSEE_Comm\":\"27586\",\"nomCom\":\"Saint-Philbert-sur-Boissey\",\"NOM_COM\":\"SAINT-PHILBERT-SUR-BOISSEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78433,49.25771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24875,\"INSEE_Comm\":\"14458\",\"nomCom\":\"Moutiers-en-Cinglais\",\"NOM_COM\":\"LESMOUTIERS-EN-CINGLAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43768,49.0231]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24876,\"INSEE_Comm\":\"80499\",\"nomCom\":\"Mailly-Raineval\",\"NOM_COM\":\"MAILLY-RAINEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44961,49.74249]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24882,\"INSEE_Comm\":\"95197\",\"nomCom\":\"Deuil-la-Barre\",\"NOM_COM\":\"DEUIL-LA-BARRE\",\"Statut\":\"Communesimple\",\"idCan\":\"9509\",\"nomCan\":\"Enghien-les-Bains\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1179,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32616,48.97127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24889,\"INSEE_Comm\":\"80798\",\"nomCom\":\"Villers-Bocage\",\"NOM_COM\":\"VILLERS-BOCAGE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32264,50.00464]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24890,\"INSEE_Comm\":\"80386\",\"nomCom\":\"Gratibus\",\"NOM_COM\":\"GRATIBUS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54938,49.68302]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24891,\"INSEE_Comm\":\"80263\",\"nomCom\":\"�chelle-Saint-Aurin\",\"NOM_COM\":\"L'ECHELLE-SAINT-AURIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71706,49.69037]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24892,\"INSEE_Comm\":\"80349\",\"nomCom\":\"Fransures\",\"NOM_COM\":\"FRANSURES\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23411,49.71368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24893,\"INSEE_Comm\":\"80137\",\"nomCom\":\"Breilly\",\"NOM_COM\":\"BREILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16426,49.92935]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24894,\"INSEE_Comm\":\"80722\",\"nomCom\":\"Saint-Vaast-en-Chauss�e\",\"NOM_COM\":\"SAINT-VAAST-EN-CHAUSSEE\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2041,49.97095]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24895,\"INSEE_Comm\":\"80244\",\"nomCom\":\"Dominois\",\"NOM_COM\":\"DOMINOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84903,50.32821]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24897,\"INSEE_Comm\":\"80118\",\"nomCom\":\"Boufflers\",\"NOM_COM\":\"BOUFFLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02129,50.25895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24909,\"INSEE_Comm\":\"27286\",\"nomCom\":\"Giverville\",\"NOM_COM\":\"GIVERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56792,49.1914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24934,\"INSEE_Comm\":\"76554\",\"nomCom\":\"Saint-Aignan-sur-Ry\",\"NOM_COM\":\"SAINT-AIGNAN-SUR-RY\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34756,49.49655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24938,\"INSEE_Comm\":\"14087\",\"nomCom\":\"Bonnoeil\",\"NOM_COM\":\"BONNOEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.36568,48.92251]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24958,\"INSEE_Comm\":\"27091\",\"nomCom\":\"Bosgouet\",\"NOM_COM\":\"BOSGOUET\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84623,49.3542]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24971,\"INSEE_Comm\":\"28248\",\"nomCom\":\"Mesnil-Thomas\",\"NOM_COM\":\"LEMESNIL-THOMAS\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08955,48.59005]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24980,\"INSEE_Comm\":\"27078\",\"nomCom\":\"Boissi�re\",\"NOM_COM\":\"LABOISSIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.369,48.95115]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":24986,\"INSEE_Comm\":\"28341\",\"nomCom\":\"Saint-Jean-de-Rebervilliers\",\"NOM_COM\":\"SAINT-JEAN-DE-REBERVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25763,48.62332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25018,\"INSEE_Comm\":\"27481\",\"nomCom\":\"Pullay\",\"NOM_COM\":\"PULLAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86407,48.72769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25023,\"INSEE_Comm\":\"27155\",\"nomCom\":\"Chennebrun\",\"NOM_COM\":\"CHENNEBRUN\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77452,48.68412]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25038,\"INSEE_Comm\":\"27694\",\"nomCom\":\"Villez-sous-Bailleul\",\"NOM_COM\":\"VILLEZ-SOUS-BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36529,49.10759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25044,\"INSEE_Comm\":\"28198\",\"nomCom\":\"Jallans\",\"NOM_COM\":\"JALLANS\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3859,48.07678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25048,\"INSEE_Comm\":\"76465\",\"nomCom\":\"Neuville-Ferri�res\",\"NOM_COM\":\"NEUVILLE-FERRIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45362,49.71143]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25053,\"INSEE_Comm\":\"78621\",\"nomCom\":\"Trappes\",\"NOM_COM\":\"TRAPPES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7824\",\"nomCan\":\"Trappes\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1047,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99344,48.775]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25061,\"INSEE_Comm\":\"78321\",\"nomCom\":\"Jouars-Pontchartrain\",\"NOM_COM\":\"JOUARS-PONTCHARTRAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":105,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90784,48.79045]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25065,\"INSEE_Comm\":\"61453\",\"nomCom\":\"Saint-Sauveur-de-Carrouges\",\"NOM_COM\":\"SAINT-SAUVEUR-DE-CARROUGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10918,48.5893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25078,\"INSEE_Comm\":\"27374\",\"nomCom\":\"Louversey\",\"NOM_COM\":\"LOUVERSEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91614,48.99107]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25093,\"INSEE_Comm\":\"61058\",\"nomCom\":\"Br�el\",\"NOM_COM\":\"BREEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38325,48.81108]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25096,\"INSEE_Comm\":\"14474\",\"nomCom\":\"Notre-Dame-d'Estr�es\",\"NOM_COM\":\"NOTRE-DAME-D'ESTREES\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.00155,49.13549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25097,\"INSEE_Comm\":\"61251\",\"nomCom\":\"Marchemaisons\",\"NOM_COM\":\"MARCHEMAISONS\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31465,48.52265]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25109,\"INSEE_Comm\":\"76365\",\"nomCom\":\"Houdetot\",\"NOM_COM\":\"HOUDETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80624,49.81694]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25126,\"INSEE_Comm\":\"28288\",\"nomCom\":\"Orlu\",\"NOM_COM\":\"ORLU\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92692,48.37033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25130,\"INSEE_Comm\":\"60069\",\"nomCom\":\"Betz\",\"NOM_COM\":\"BETZ\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94291,49.15592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25131,\"INSEE_Comm\":\"60489\",\"nomCom\":\"P�roy-les-Gombries\",\"NOM_COM\":\"PEROY-LES-GOMBRIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84324,49.16567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25142,\"INSEE_Comm\":\"14167\",\"nomCom\":\"Colombelles\",\"NOM_COM\":\"COLOMBELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":410,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29536,49.19828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25150,\"INSEE_Comm\":\"14185\",\"nomCom\":\"Coudray-Rabut\",\"NOM_COM\":\"COUDRAY-RABUT\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1806,49.30368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25151,\"INSEE_Comm\":\"14494\",\"nomCom\":\"P�riers-en-Auge\",\"NOM_COM\":\"PERIERS-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09447,49.26466]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25152,\"INSEE_Comm\":\"27227\",\"nomCom\":\"�tr�ville\",\"NOM_COM\":\"ETREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65533,49.37957]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25153,\"INSEE_Comm\":\"76096\",\"nomCom\":\"Biville-la-Baignarde\",\"NOM_COM\":\"BIVILLE-LA-BAIGNARDE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04762,49.7216]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25154,\"INSEE_Comm\":\"76286\",\"nomCom\":\"Fresnoy-Folny\",\"NOM_COM\":\"FRESNOY-FOLNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43484,49.8872]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25155,\"INSEE_Comm\":\"27093\",\"nomCom\":\"Bosnormand\",\"NOM_COM\":\"BOSNORMAND\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9095,49.27776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25156,\"INSEE_Comm\":\"76453\",\"nomCom\":\"Morgny-la-Pommeraye\",\"NOM_COM\":\"MORGNY-LA-POMMERAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25089,49.51995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25157,\"INSEE_Comm\":\"60622\",\"nomCom\":\"Sommereux\",\"NOM_COM\":\"SOMMEREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00348,49.67491]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25158,\"INSEE_Comm\":\"60058\",\"nomCom\":\"Beauvoir\",\"NOM_COM\":\"BEAUVOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33019,49.60581]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25159,\"INSEE_Comm\":\"60299\",\"nomCom\":\"Hardivillers\",\"NOM_COM\":\"HARDIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22471,49.61904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25160,\"INSEE_Comm\":\"60462\",\"nomCom\":\"Noailles\",\"NOM_COM\":\"NOAILLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":186,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19389,49.31846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25161,\"INSEE_Comm\":\"80709\",\"nomCom\":\"Saint-Maulvis\",\"NOM_COM\":\"SAINT-MAULVIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82631,49.90239]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25162,\"INSEE_Comm\":\"76242\",\"nomCom\":\"Ernemont-la-Villette\",\"NOM_COM\":\"ERNEMONT-LA-VILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71162,49.45459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25163,\"INSEE_Comm\":\"60246\",\"nomCom\":\"Fosseuse\",\"NOM_COM\":\"FOSSEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18451,49.21474]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25164,\"INSEE_Comm\":\"60501\",\"nomCom\":\"Plessis-Brion\",\"NOM_COM\":\"LEPLESSIS-BRION\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.90843,49.46214]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25165,\"INSEE_Comm\":\"60600\",\"nomCom\":\"Saint-Vaast-de-Longmont\",\"NOM_COM\":\"SAINT-VAAST-DE-LONGMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74465,49.29648]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25166,\"INSEE_Comm\":\"60124\",\"nomCom\":\"Candor\",\"NOM_COM\":\"CANDOR\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8878,49.62856]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25167,\"INSEE_Comm\":\"80777\",\"nomCom\":\"Vauchelles-l�s-Authie\",\"NOM_COM\":\"VAUCHELLES-LES-AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4695,50.09428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25168,\"INSEE_Comm\":\"76606\",\"nomCom\":\"Morienne\",\"NOM_COM\":\"MORIENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72146,49.78164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25169,\"INSEE_Comm\":\"80735\",\"nomCom\":\"Seux\",\"NOM_COM\":\"SEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1056,49.87683]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25170,\"INSEE_Comm\":\"80135\",\"nomCom\":\"Bray-l�s-Mareuil\",\"NOM_COM\":\"BRAY-LES-MAREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8002\",\"nomCan\":\"Abbeville-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84855,50.05149]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25181,\"INSEE_Comm\":\"80697\",\"nomCom\":\"Saint-Acheul\",\"NOM_COM\":\"SAINT-ACHEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16266,50.19064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25188,\"INSEE_Comm\":\"78140\",\"nomCom\":\"Chapet\",\"NOM_COM\":\"CHAPET\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94013,48.96814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25207,\"INSEE_Comm\":\"76407\",\"nomCom\":\"Manneville-�s-Plains\",\"NOM_COM\":\"MANNEVILLE-ES-PLAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75168,49.85826]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25208,\"INSEE_Comm\":\"76743\",\"nomCom\":\"Villers-�calles\",\"NOM_COM\":\"VILLERS-ECALLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":72,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92685,49.5352]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25215,\"INSEE_Comm\":\"78558\",\"nomCom\":\"Saint-Illiers-la-Ville\",\"NOM_COM\":\"SAINT-ILLIERS-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54421,48.97763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25216,\"INSEE_Comm\":\"28293\",\"nomCom\":\"Oulins\",\"NOM_COM\":\"OULINS\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":90,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48931,48.8666]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25217,\"INSEE_Comm\":\"78618\",\"nomCom\":\"Tilly\",\"NOM_COM\":\"TILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57501,48.87798]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25218,\"INSEE_Comm\":\"28361\",\"nomCom\":\"Bleury-Saint-Symphorien\",\"NOM_COM\":\"SAINT-SYMPHORIEN-LE-CHATEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77139,48.51905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25222,\"INSEE_Comm\":\"27270\",\"nomCom\":\"Fresne-l'Archev�que\",\"NOM_COM\":\"FRESNE-L'ARCHEVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40976,49.28807]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25236,\"INSEE_Comm\":\"27237\",\"nomCom\":\"Favril\",\"NOM_COM\":\"LEFAVRIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52546,49.18311]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25242,\"INSEE_Comm\":\"27035\",\"nomCom\":\"Bailleul-la-Vall�e\",\"NOM_COM\":\"BAILLEUL-LA-VALLEE\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4314,49.19711]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25249,\"INSEE_Comm\":\"78238\",\"nomCom\":\"Flins-sur-Seine\",\"NOM_COM\":\"FLINS-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87272,48.96737]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25250,\"INSEE_Comm\":\"60548\",\"nomCom\":\"Rosoy-en-Multien\",\"NOM_COM\":\"ROSOY-EN-MULTIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98939,49.09553]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25251,\"INSEE_Comm\":\"28284\",\"nomCom\":\"Oinville-Saint-Liphard\",\"NOM_COM\":\"OINVILLE-SAINT-LIPHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92415,48.23563]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25252,\"INSEE_Comm\":\"28374\",\"nomCom\":\"Serazereux\",\"NOM_COM\":\"SERAZEREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43635,48.5949]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25259,\"INSEE_Comm\":\"61321\",\"nomCom\":\"Pac�\",\"NOM_COM\":\"PACE\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.00536,48.44571]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25262,\"INSEE_Comm\":\"76291\",\"nomCom\":\"Froberville\",\"NOM_COM\":\"FROBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":115,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3356,49.71508]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25278,\"INSEE_Comm\":\"80558\",\"nomCom\":\"Monsures\",\"NOM_COM\":\"MONSURES\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16144,49.71112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25280,\"INSEE_Comm\":\"80261\",\"nomCom\":\"Dury\",\"NOM_COM\":\"DURY\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2767,49.85243]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25284,\"INSEE_Comm\":\"80405\",\"nomCom\":\"Hailles\",\"NOM_COM\":\"HAILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42882,49.7991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25285,\"INSEE_Comm\":\"76284\",\"nomCom\":\"Fresnay-le-Long\",\"NOM_COM\":\"FRESNAY-LE-LONG\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09305,49.65074]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25286,\"INSEE_Comm\":\"80077\",\"nomCom\":\"B�hencourt\",\"NOM_COM\":\"BEHENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46973,49.97382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25287,\"INSEE_Comm\":\"80287\",\"nomCom\":\"Estr�boeuf\",\"NOM_COM\":\"ESTREBOEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62848,50.15377]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25294,\"INSEE_Comm\":\"27288\",\"nomCom\":\"Glos-sur-Risle\",\"NOM_COM\":\"GLOS-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68457,49.27237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25297,\"INSEE_Comm\":\"27584\",\"nomCom\":\"Saint-Paul-de-Fourques\",\"NOM_COM\":\"SAINT-PAUL-DE-FOURQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79482,49.21794]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25306,\"INSEE_Comm\":\"14417\",\"nomCom\":\"Mesnil-Clinchamps\",\"NOM_COM\":\"MESNIL-CLINCHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.98235,48.84592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25347,\"INSEE_Comm\":\"76628\",\"nomCom\":\"Saint-Ouen-du-Breuil\",\"NOM_COM\":\"SAINT-OUEN-DU-BREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02391,49.63213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25352,\"INSEE_Comm\":\"76019\",\"nomCom\":\"Anneville-sur-Scie\",\"NOM_COM\":\"ANNEVILLE-SUR-SCIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09303,49.83867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25366,\"INSEE_Comm\":\"61044\",\"nomCom\":\"Berjou\",\"NOM_COM\":\"BERJOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47841,48.84876]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25383,\"INSEE_Comm\":\"14437\",\"nomCom\":\"Mondeville\",\"NOM_COM\":\"MONDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1443\",\"nomCan\":\"Caen7eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":196,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.31052,49.1691]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25384,\"INSEE_Comm\":\"61350\",\"nomCom\":\"Roche-Mabile\",\"NOM_COM\":\"LAROCHE-MABILE\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.06632,48.48947]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25389,\"INSEE_Comm\":\"14142\",\"nomCom\":\"Castilly\",\"NOM_COM\":\"CASTILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.01617,49.27382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25399,\"INSEE_Comm\":\"95690\",\"nomCom\":\"Wy-dit-Joli-Village\",\"NOM_COM\":\"WY-DIT-JOLI-VILLAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82503,49.09582]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25413,\"INSEE_Comm\":\"76415\",\"nomCom\":\"Massy\",\"NOM_COM\":\"MASSY\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39541,49.68786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25416,\"INSEE_Comm\":\"27610\",\"nomCom\":\"Saint-Victor-sur-Avre\",\"NOM_COM\":\"SAINT-VICTOR-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85088,48.69628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25424,\"INSEE_Comm\":\"27081\",\"nomCom\":\"Boncourt\",\"NOM_COM\":\"BONCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29713,49.02033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25429,\"INSEE_Comm\":\"28406\",\"nomCom\":\"Viabon\",\"NOM_COM\":\"VIABON\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69304,48.2158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25445,\"INSEE_Comm\":\"27111\",\"nomCom\":\"Bretagnolles\",\"NOM_COM\":\"BRETAGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34129,48.94657]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25456,\"INSEE_Comm\":\"61423\",\"nomCom\":\"Saint-Martin-d'�cublei\",\"NOM_COM\":\"SAINT-MARTIN-D'ECUBLEI\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66912,48.79509]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25459,\"INSEE_Comm\":\"76216\",\"nomCom\":\"D�ville-l�s-Rouen\",\"NOM_COM\":\"DEVILLE-LES-ROUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"7665\",\"nomCan\":\"Mont-Saint-Aignan\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":334,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05154,49.46647]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25465,\"INSEE_Comm\":\"27391\",\"nomCom\":\"Marcilly-sur-Eure\",\"NOM_COM\":\"MARCILLY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":87,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33288,48.82136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25466,\"INSEE_Comm\":\"95371\",\"nomCom\":\"Marly-la-Ville\",\"NOM_COM\":\"MARLY-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":115,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50872,49.0815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25468,\"INSEE_Comm\":\"78389\",\"nomCom\":\"M�r�\",\"NOM_COM\":\"MERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81994,48.79555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25469,\"INSEE_Comm\":\"61143\",\"nomCom\":\"Damigny\",\"NOM_COM\":\"DAMIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07211,48.45094]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25470,\"INSEE_Comm\":\"14244\",\"nomCom\":\"Eraines\",\"NOM_COM\":\"ERAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15711,48.90486]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25471,\"INSEE_Comm\":\"14414\",\"nomCom\":\"Mesnil-Bacley\",\"NOM_COM\":\"LEMESNIL-BACLEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.12956,48.99816]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25472,\"INSEE_Comm\":\"14180\",\"nomCom\":\"Cordey\",\"NOM_COM\":\"CORDEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22272,48.85166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25473,\"INSEE_Comm\":\"14282\",\"nomCom\":\"Foulognes\",\"NOM_COM\":\"FOULOGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.80595,49.13983]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25474,\"INSEE_Comm\":\"61304\",\"nomCom\":\"Neuilly-le-Bisson\",\"NOM_COM\":\"NEUILLY-LE-BISSON\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21967,48.50435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25475,\"INSEE_Comm\":\"61231\",\"nomCom\":\"Longueno�\",\"NOM_COM\":\"LONGUENOE\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.06555,48.5163]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25506,\"INSEE_Comm\":\"28026\",\"nomCom\":\"Baudreville\",\"NOM_COM\":\"BAUDREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89005,48.32607]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25523,\"INSEE_Comm\":\"76012\",\"nomCom\":\"Angerville-Bailleul\",\"NOM_COM\":\"ANGERVILLE-BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45434,49.66787]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25528,\"INSEE_Comm\":\"80770\",\"nomCom\":\"Tully\",\"NOM_COM\":\"TULLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5146,50.082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25529,\"INSEE_Comm\":\"76136\",\"nomCom\":\"Brachy\",\"NOM_COM\":\"BRACHY\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9489,49.81659]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25530,\"INSEE_Comm\":\"76205\",\"nomCom\":\"Crosville-sur-Scie\",\"NOM_COM\":\"CROSVILLE-SUR-SCIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08186,49.81939]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25531,\"INSEE_Comm\":\"76112\",\"nomCom\":\"Bois-Robert\",\"NOM_COM\":\"LEBOIS-ROBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14915,49.83803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25532,\"INSEE_Comm\":\"76526\",\"nomCom\":\"Ricarville-du-Val\",\"NOM_COM\":\"RICARVILLE-DU-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26866,49.79813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25533,\"INSEE_Comm\":\"76665\",\"nomCom\":\"Sauchay\",\"NOM_COM\":\"SAUCHAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20514,49.91949]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25534,\"INSEE_Comm\":\"60673\",\"nomCom\":\"Viefvillers\",\"NOM_COM\":\"VIEFVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12817,49.60927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25535,\"INSEE_Comm\":\"60567\",\"nomCom\":\"Saint-Aubin-en-Bray\",\"NOM_COM\":\"SAINT-AUBIN-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88925,49.42562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25536,\"INSEE_Comm\":\"60289\",\"nomCom\":\"Grez\",\"NOM_COM\":\"GREZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97882,49.63372]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25537,\"INSEE_Comm\":\"60642\",\"nomCom\":\"Tracy-le-Val\",\"NOM_COM\":\"TRACY-LE-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":108,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01396,49.4908]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25538,\"INSEE_Comm\":\"60332\",\"nomCom\":\"Labruy�re\",\"NOM_COM\":\"LABRUYERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5077,49.35273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25539,\"INSEE_Comm\":\"60231\",\"nomCom\":\"Feigneux\",\"NOM_COM\":\"FEIGNEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91459,49.26098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25541,\"INSEE_Comm\":\"80750\",\"nomCom\":\"Tertry\",\"NOM_COM\":\"TERTRY\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07112,49.85968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25543,\"INSEE_Comm\":\"60021\",\"nomCom\":\"Appilly\",\"NOM_COM\":\"APPILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.12116,49.58242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25549,\"INSEE_Comm\":\"80087\",\"nomCom\":\"Bernay-en-Ponthieu\",\"NOM_COM\":\"BERNAY-EN-PONTHIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75044,50.26371]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25550,\"INSEE_Comm\":\"80556\",\"nomCom\":\"Mons-Boubert\",\"NOM_COM\":\"MONS-BOUBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66416,50.1262]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25563,\"INSEE_Comm\":\"95395\",\"nomCom\":\"Mesnil-Aubry\",\"NOM_COM\":\"LEMESNIL-AUBRY\",\"Statut\":\"Communesimple\",\"idCan\":\"9508\",\"nomCan\":\"�couen\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39231,49.05354]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25565,\"INSEE_Comm\":\"76375\",\"nomCom\":\"Ingouville\",\"NOM_COM\":\"INGOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7650\",\"nomCan\":\"Saint-Valery-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68152,49.8445]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25566,\"INSEE_Comm\":\"76156\",\"nomCom\":\"Canouville\",\"NOM_COM\":\"CANOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59768,49.80642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25574,\"INSEE_Comm\":\"95301\",\"nomCom\":\"Haute-Isle\",\"NOM_COM\":\"HAUTE-ISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66282,49.08273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25577,\"INSEE_Comm\":\"27397\",\"nomCom\":\"M�nilles\",\"NOM_COM\":\"MENILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3705,49.03884]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25593,\"INSEE_Comm\":\"27222\",\"nomCom\":\"�preville-en-Lieuvin\",\"NOM_COM\":\"EPREVILLE-EN-LIEUVIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53841,49.20517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25595,\"INSEE_Comm\":\"27151\",\"nomCom\":\"Charleval\",\"NOM_COM\":\"CHARLEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3896,49.37966]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25596,\"INSEE_Comm\":\"27255\",\"nomCom\":\"Fontenay\",\"NOM_COM\":\"FONTENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57386,49.21076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25608,\"INSEE_Comm\":\"78396\",\"nomCom\":\"Mesnil-le-Roi\",\"NOM_COM\":\"LEMESNIL-LE-ROI\",\"Statut\":\"Communesimple\",\"idCan\":\"7811\",\"nomCan\":\"Maisons-Laffitte\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":130,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12217,48.9258]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25610,\"INSEE_Comm\":\"28116\",\"nomCom\":\"Courville-sur-Eure\",\"NOM_COM\":\"COURVILLE-SUR-EURE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":135,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24922,48.45227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25611,\"INSEE_Comm\":\"28337\",\"nomCom\":\"Saint-Georges-sur-Eure\",\"NOM_COM\":\"SAINT-GEORGES-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35744,48.41956]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25620,\"INSEE_Comm\":\"60677\",\"nomCom\":\"Villembray\",\"NOM_COM\":\"VILLEMBRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87279,49.48269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25626,\"INSEE_Comm\":\"14607\",\"nomCom\":\"Saint-Louet-sur-Seulles\",\"NOM_COM\":\"SAINT-LOUET-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67808,49.09568]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25633,\"INSEE_Comm\":\"80584\",\"nomCom\":\"Naours\",\"NOM_COM\":\"NAOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28427,50.04519]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25635,\"INSEE_Comm\":\"80116\",\"nomCom\":\"Bouchoir\",\"NOM_COM\":\"BOUCHOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6787,49.74552]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25636,\"INSEE_Comm\":\"80152\",\"nomCom\":\"Bus-la-M�si�re\",\"NOM_COM\":\"BUS-LA-MESIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71418,49.63803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25637,\"INSEE_Comm\":\"80408\",\"nomCom\":\"Halloy-l�s-Pernois\",\"NOM_COM\":\"HALLOY-LES-PERNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20337,50.04279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25646,\"INSEE_Comm\":\"76168\",\"nomCom\":\"Cent-Acres\",\"NOM_COM\":\"LESCENT-ACRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14121,49.77121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25667,\"INSEE_Comm\":\"61223\",\"nomCom\":\"Larchamp\",\"NOM_COM\":\"LARCHAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67772,48.69823]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25671,\"INSEE_Comm\":\"61011\",\"nomCom\":\"Aubusson\",\"NOM_COM\":\"AUBUSSON\",\"Statut\":\"Communesimple\",\"idCan\":\"6115\",\"nomCan\":\"Flers-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.55327,48.77982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25693,\"INSEE_Comm\":\"14283\",\"nomCom\":\"Fourches\",\"NOM_COM\":\"FOURCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07424,48.85853]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25702,\"INSEE_Comm\":\"78322\",\"nomCom\":\"Jouy-en-Josas\",\"NOM_COM\":\"JOUY-EN-JOSAS\",\"Statut\":\"Communesimple\",\"idCan\":\"7829\",\"nomCan\":\"Versailles-Sud\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":63,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16266,48.76616]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25723,\"INSEE_Comm\":\"14572\",\"nomCom\":\"Saint-Denis-de-M�r�\",\"NOM_COM\":\"SAINT-DENIS-DE-MERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50314,48.86481]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25734,\"INSEE_Comm\":\"14086\",\"nomCom\":\"Bonneville-sur-Touques\",\"NOM_COM\":\"BONNEVILLE-SUR-TOUQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.11914,49.32985]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25750,\"INSEE_Comm\":\"61471\",\"nomCom\":\"S�rigny\",\"NOM_COM\":\"SERIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59015,48.37722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25752,\"INSEE_Comm\":\"27007\",\"nomCom\":\"Ajou\",\"NOM_COM\":\"AJOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76944,48.98405]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25754,\"INSEE_Comm\":\"14421\",\"nomCom\":\"Mesnil-Guillaume\",\"NOM_COM\":\"LEMESNIL-GUILLAUME\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28258,49.10488]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25771,\"INSEE_Comm\":\"14716\",\"nomCom\":\"Trungy\",\"NOM_COM\":\"TRUNGY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.7224,49.19369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25772,\"INSEE_Comm\":\"27634\",\"nomCom\":\"Thomer-la-S�gne\",\"NOM_COM\":\"THOMER-LA-SOGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16566,48.9078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25781,\"INSEE_Comm\":\"28252\",\"nomCom\":\"Miermaigne\",\"NOM_COM\":\"MIERMAIGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99748,48.24888]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25794,\"INSEE_Comm\":\"61215\",\"nomCom\":\"Laleu\",\"NOM_COM\":\"LALEU\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.36599,48.54172]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25795,\"INSEE_Comm\":\"76452\",\"nomCom\":\"Montville\",\"NOM_COM\":\"MONTVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":226,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08201,49.54595]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25798,\"INSEE_Comm\":\"27271\",\"nomCom\":\"Fresney\",\"NOM_COM\":\"FRESNEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30678,48.94736]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25815,\"INSEE_Comm\":\"76042\",\"nomCom\":\"Auvilliers\",\"NOM_COM\":\"AUVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57466,49.75759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25823,\"INSEE_Comm\":\"14719\",\"nomCom\":\"Urville\",\"NOM_COM\":\"URVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29429,49.02513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25824,\"INSEE_Comm\":\"61020\",\"nomCom\":\"Avoine\",\"NOM_COM\":\"AVOINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09919,48.67143]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25825,\"INSEE_Comm\":\"14276\",\"nomCom\":\"Fontaine-le-Pin\",\"NOM_COM\":\"FONTAINE-LE-PIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.2914,48.97491]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25826,\"INSEE_Comm\":\"14141\",\"nomCom\":\"Castillon-en-Auge\",\"NOM_COM\":\"CASTILLON-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09195,49.03469]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25828,\"INSEE_Comm\":\"61165\",\"nomCom\":\"Ferri�re-Bochard\",\"NOM_COM\":\"LAFERRIERE-BOCHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03684,48.41608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25857,\"INSEE_Comm\":\"95008\",\"nomCom\":\"Aincourt\",\"NOM_COM\":\"AINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77404,49.07284]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25859,\"INSEE_Comm\":\"60695\",\"nomCom\":\"Vineuil-Saint-Firmin\",\"NOM_COM\":\"VINEUIL-SAINT-FIRMIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5007,49.20478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25874,\"INSEE_Comm\":\"14221\",\"nomCom\":\"D�mouville\",\"NOM_COM\":\"DEMOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":181,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26313,49.17777]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25889,\"INSEE_Comm\":\"14536\",\"nomCom\":\"Rivi�re-Saint-Sauveur\",\"NOM_COM\":\"LARIVIERE-SAINT-SAUVEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":241,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26817,49.40814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25890,\"INSEE_Comm\":\"14557\",\"nomCom\":\"Saint-Arnoult\",\"NOM_COM\":\"SAINT-ARNOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":147,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08946,49.3308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25891,\"INSEE_Comm\":\"14542\",\"nomCom\":\"Rosel\",\"NOM_COM\":\"ROSEL\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.45002,49.22165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25892,\"INSEE_Comm\":\"14110\",\"nomCom\":\"Brucourt\",\"NOM_COM\":\"BRUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.10301,49.24689]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25893,\"INSEE_Comm\":\"27393\",\"nomCom\":\"Martainville\",\"NOM_COM\":\"MARTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38612,49.30272]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25894,\"INSEE_Comm\":\"76050\",\"nomCom\":\"Avremesnil\",\"NOM_COM\":\"AVREMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":91,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93294,49.85019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25895,\"INSEE_Comm\":\"76073\",\"nomCom\":\"Belleville-sur-Mer\",\"NOM_COM\":\"BELLEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":81,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16642,49.94778]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25896,\"INSEE_Comm\":\"76044\",\"nomCom\":\"Auzouville-Auberbosc\",\"NOM_COM\":\"AUZOUVILLE-AUBERBOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57347,49.63059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25897,\"INSEE_Comm\":\"76368\",\"nomCom\":\"Houquetot\",\"NOM_COM\":\"HOUQUETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38779,49.60464]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25898,\"INSEE_Comm\":\"76074\",\"nomCom\":\"Belli�re\",\"NOM_COM\":\"LABELLIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60262,49.60511]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25899,\"INSEE_Comm\":\"27094\",\"nomCom\":\"Bosquentin\",\"NOM_COM\":\"BOSQUENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58826,49.41283]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25900,\"INSEE_Comm\":\"27506\",\"nomCom\":\"Saint-Amand-des-Hautes-Terres\",\"NOM_COM\":\"SAINT-AMAND-DES-HAUTES-TERRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93009,49.23139]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25901,\"INSEE_Comm\":\"76740\",\"nomCom\":\"Vieux-Rue\",\"NOM_COM\":\"LAVIEUX-RUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24616,49.49687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25902,\"INSEE_Comm\":\"76580\",\"nomCom\":\"Saint-Georges-sur-Fontaine\",\"NOM_COM\":\"SAINT-GEORGES-SUR-FONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1754,49.54708]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25903,\"INSEE_Comm\":\"80565\",\"nomCom\":\"Montonvillers\",\"NOM_COM\":\"MONTONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29572,49.99644]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25904,\"INSEE_Comm\":\"60381\",\"nomCom\":\"Margny-aux-Cerises\",\"NOM_COM\":\"MARGNY-AUX-CERISES\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86866,49.67245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25905,\"INSEE_Comm\":\"60493\",\"nomCom\":\"Pisseleu\",\"NOM_COM\":\"PISSELEU\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05642,49.53786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25906,\"INSEE_Comm\":\"80836\",\"nomCom\":\"Yonval\",\"NOM_COM\":\"YONVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"8002\",\"nomCan\":\"Abbeville-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78672,50.08991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25907,\"INSEE_Comm\":\"60270\",\"nomCom\":\"Genvry\",\"NOM_COM\":\"GENVRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.9955,49.61165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25908,\"INSEE_Comm\":\"60338\",\"nomCom\":\"Lacroix-Saint-Ouen\",\"NOM_COM\":\"LACROIX-SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6037\",\"nomCan\":\"Compi�gne-Sud-Est\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":150,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79514,49.35506]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25909,\"INSEE_Comm\":\"60345\",\"nomCom\":\"Lam�court\",\"NOM_COM\":\"LAMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46504,49.43009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25910,\"INSEE_Comm\":\"60584\",\"nomCom\":\"Saint-Leu-d'Esserent\",\"NOM_COM\":\"SAINT-LEU-D'ESSERENT\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40904,49.22848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25911,\"INSEE_Comm\":\"60133\",\"nomCom\":\"Catillon-Fumechon\",\"NOM_COM\":\"CATILLON-FUMECHON\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37843,49.52688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25912,\"INSEE_Comm\":\"80081\",\"nomCom\":\"Belloy-Saint-L�onard\",\"NOM_COM\":\"BELLOY-SAINT-LEONARD\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9102,49.90487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25914,\"INSEE_Comm\":\"80413\",\"nomCom\":\"Hancourt\",\"NOM_COM\":\"HANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07066,49.90494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25918,\"INSEE_Comm\":\"60287\",\"nomCom\":\"Grandr�\",\"NOM_COM\":\"GRANDRU\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07877,49.61258]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25927,\"INSEE_Comm\":\"80439\",\"nomCom\":\"Heuzecourt\",\"NOM_COM\":\"HEUZECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16873,50.16546]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25940,\"INSEE_Comm\":\"95365\",\"nomCom\":\"Mareil-en-France\",\"NOM_COM\":\"MAREIL-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41754,49.07004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25946,\"INSEE_Comm\":\"28054\",\"nomCom\":\"Boullay-Mivoye\",\"NOM_COM\":\"LEBOULLAY-MIVOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40636,48.65419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25951,\"INSEE_Comm\":\"27402\",\"nomCom\":\"Mesnil-Hardray\",\"NOM_COM\":\"LEMESNIL-HARDRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98706,48.93442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25961,\"INSEE_Comm\":\"27384\",\"nomCom\":\"Manneville-la-Raoult\",\"NOM_COM\":\"MANNEVILLE-LA-RAOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32763,49.3687]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25963,\"INSEE_Comm\":\"27021\",\"nomCom\":\"Asni�res\",\"NOM_COM\":\"ASNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40199,49.20484]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":25991,\"INSEE_Comm\":\"61220\",\"nomCom\":\"Lande-sur-Eure\",\"NOM_COM\":\"LALANDE-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8634,48.56099]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26001,\"INSEE_Comm\":\"80004\",\"nomCom\":\"Acheux-en-Vimeu\",\"NOM_COM\":\"ACHEUX-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67027,50.06603]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26004,\"INSEE_Comm\":\"95352\",\"nomCom\":\"Luzarches\",\"NOM_COM\":\"LUZARCHES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":230,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44082,49.11512]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26012,\"INSEE_Comm\":\"76699\",\"nomCom\":\"Torp-Mesnil\",\"NOM_COM\":\"LETORP-MESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90508,49.72571]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26013,\"INSEE_Comm\":\"80281\",\"nomCom\":\"Ergnies\",\"NOM_COM\":\"ERGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03216,50.08835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26016,\"INSEE_Comm\":\"27228\",\"nomCom\":\"�turqueraye\",\"NOM_COM\":\"ETURQUERAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68877,49.3694]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26023,\"INSEE_Comm\":\"76574\",\"nomCom\":\"Saint-Denis-sur-Scie\",\"NOM_COM\":\"SAINT-DENIS-SUR-SCIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08566,49.70314]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26046,\"INSEE_Comm\":\"61035\",\"nomCom\":\"Beauvain\",\"NOM_COM\":\"BEAUVAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30259,48.62024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26053,\"INSEE_Comm\":\"61508\",\"nomCom\":\"Vimoutiers\",\"NOM_COM\":\"VIMOUTIERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20075,48.92459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26067,\"INSEE_Comm\":\"61188\",\"nomCom\":\"Genevraie\",\"NOM_COM\":\"LAGENEVRAIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31912,48.68362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26089,\"INSEE_Comm\":\"76659\",\"nomCom\":\"Saint-Wandrille-Ran�on\",\"NOM_COM\":\"SAINT-WANDRILLE-RANCON\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77456,49.52619]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26093,\"INSEE_Comm\":\"28236\",\"nomCom\":\"Margon\",\"NOM_COM\":\"MARGON\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":88,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85088,48.33741]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26107,\"INSEE_Comm\":\"61211\",\"nomCom\":\"Juvigny-sous-Andaine\",\"NOM_COM\":\"JUVIGNY-SOUS-ANDAINE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.49663,48.55756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26147,\"INSEE_Comm\":\"28216\",\"nomCom\":\"Louvilliers-en-Drouais\",\"NOM_COM\":\"LOUVILLIERS-EN-DROUAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28314,48.73485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26154,\"INSEE_Comm\":\"28149\",\"nomCom\":\"Fert�-Vidame\",\"NOM_COM\":\"LAFERTE-VIDAME\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88286,48.60003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26168,\"INSEE_Comm\":\"61034\",\"nomCom\":\"Beaulieu\",\"NOM_COM\":\"BEAULIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7362,48.68025]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26188,\"INSEE_Comm\":\"60057\",\"nomCom\":\"Beauvais\",\"NOM_COM\":\"BEAUVAIS\",\"Statut\":\"Pr?fecture\",\"idCan\":\"6099\",\"nomCan\":\"Beauvais\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1850,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08617,49.43655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26243,\"INSEE_Comm\":\"28025\",\"nomCom\":\"Barmainville\",\"NOM_COM\":\"BARMAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95474,48.25903]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26291,\"INSEE_Comm\":\"14622\",\"nomCom\":\"Saint-Martin-de-Blagny\",\"NOM_COM\":\"SAINT-MARTIN-DE-BLAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.94301,49.24886]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26295,\"INSEE_Comm\":\"76396\",\"nomCom\":\"Longuerue\",\"NOM_COM\":\"LONGUERUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28955,49.54735]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26296,\"INSEE_Comm\":\"80406\",\"nomCom\":\"Hallencourt\",\"NOM_COM\":\"HALLENCOURT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87489,49.99556]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26297,\"INSEE_Comm\":\"80168\",\"nomCom\":\"Candas\",\"NOM_COM\":\"CANDAS\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28045,50.09969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26300,\"INSEE_Comm\":\"76367\",\"nomCom\":\"Houppeville\",\"NOM_COM\":\"HOUPPEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":120,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08915,49.50417]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26307,\"INSEE_Comm\":\"14120\",\"nomCom\":\"Cahagnes\",\"NOM_COM\":\"CAHAGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76268,49.06716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26317,\"INSEE_Comm\":\"14527\",\"nomCom\":\"Bi�ville-Qu�ti�ville\",\"NOM_COM\":\"BIEVILLE-QUETIEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03576,49.11611]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26345,\"INSEE_Comm\":\"76463\",\"nomCom\":\"Neuf-March�\",\"NOM_COM\":\"NEUF-MARCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69252,49.42209]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26347,\"INSEE_Comm\":\"27358\",\"nomCom\":\"Jouy-sur-Eure\",\"NOM_COM\":\"JOUY-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29182,49.04952]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26349,\"INSEE_Comm\":\"95541\",\"nomCom\":\"Saint-Clair-sur-Epte\",\"NOM_COM\":\"SAINT-CLAIR-SUR-EPTE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70337,49.21327]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26350,\"INSEE_Comm\":\"61275\",\"nomCom\":\"Merlerault\",\"NOM_COM\":\"LEMERLERAULT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28027,48.70079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26367,\"INSEE_Comm\":\"61369\",\"nomCom\":\"Saint-B�mer-les-Forges\",\"NOM_COM\":\"SAINT-BOMER-LES-FORGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.62281,48.64484]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26387,\"INSEE_Comm\":\"61244\",\"nomCom\":\"Mah�ru\",\"NOM_COM\":\"MAHERU\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43899,48.66549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26390,\"INSEE_Comm\":\"60155\",\"nomCom\":\"Cires-l�s-Mello\",\"NOM_COM\":\"CIRES-LES-MELLO\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":59,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.33764,49.26271]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26397,\"INSEE_Comm\":\"14371\",\"nomCom\":\"Livarot\",\"NOM_COM\":\"LIVAROT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":92,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.166,49.00517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26413,\"INSEE_Comm\":\"80713\",\"nomCom\":\"Saint-Quentin-en-Tourmont\",\"NOM_COM\":\"SAINT-QUENTIN-EN-TOURMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57709,50.28009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26424,\"INSEE_Comm\":\"80298\",\"nomCom\":\"�tricourt-Manancourt\",\"NOM_COM\":\"ETRICOURT-MANANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98221,50.02964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26425,\"INSEE_Comm\":\"78591\",\"nomCom\":\"Septeuil\",\"NOM_COM\":\"SEPTEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":81,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68459,48.8882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26431,\"INSEE_Comm\":\"80079\",\"nomCom\":\"Belleuse\",\"NOM_COM\":\"BELLEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11375,49.70295]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26435,\"INSEE_Comm\":\"61459\",\"nomCom\":\"Saires-la-Verrerie\",\"NOM_COM\":\"SAIRES-LA-VERRERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6122\",\"nomCan\":\"Messei\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48759,48.68962]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26442,\"INSEE_Comm\":\"78590\",\"nomCom\":\"Senlisse\",\"NOM_COM\":\"SENLISSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97174,48.68542]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26449,\"INSEE_Comm\":\"80714\",\"nomCom\":\"Saint-Quentin-la-Motte-Croix-au-Bailly\",\"NOM_COM\":\"SAINT-QUENTIN-LA-MOTTE-CROIX-AU-BAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.451,50.07366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26451,\"INSEE_Comm\":\"80158\",\"nomCom\":\"Buverchy\",\"NOM_COM\":\"BUVERCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97017,49.72749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26452,\"INSEE_Comm\":\"80031\",\"nomCom\":\"Arvillers\",\"NOM_COM\":\"ARVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63586,49.73187]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26453,\"INSEE_Comm\":\"60556\",\"nomCom\":\"Royaucourt\",\"NOM_COM\":\"ROYAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52773,49.61248]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26454,\"INSEE_Comm\":\"60621\",\"nomCom\":\"Solente\",\"NOM_COM\":\"SOLENTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.88428,49.69786]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26455,\"INSEE_Comm\":\"80030\",\"nomCom\":\"Arry\",\"NOM_COM\":\"ARRY\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7227,50.28215]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26476,\"INSEE_Comm\":\"76026\",\"nomCom\":\"Arques-la-Bataille\",\"NOM_COM\":\"ARQUES-LA-BATAILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":135,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13612,49.88237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26519,\"INSEE_Comm\":\"78398\",\"nomCom\":\"Mesnuls\",\"NOM_COM\":\"LESMESNULS\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83436,48.75454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26522,\"INSEE_Comm\":\"14281\",\"nomCom\":\"Formigny\",\"NOM_COM\":\"FORMIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.89642,49.33574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26537,\"INSEE_Comm\":\"27287\",\"nomCom\":\"Glisolles\",\"NOM_COM\":\"GLISOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00331,48.98705]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26542,\"INSEE_Comm\":\"28321\",\"nomCom\":\"Rouvres\",\"NOM_COM\":\"ROUVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4807,48.8323]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26550,\"INSEE_Comm\":\"76552\",\"nomCom\":\"Sainte-Adresse\",\"NOM_COM\":\"SAINTE-ADRESSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7656\",\"nomCan\":\"Havre6eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":171,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07867,49.50998]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26562,\"INSEE_Comm\":\"61311\",\"nomCom\":\"Normandel\",\"NOM_COM\":\"NORMANDEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72197,48.65075]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26568,\"INSEE_Comm\":\"27406\",\"nomCom\":\"Mesnil-sur-l'Estr�e\",\"NOM_COM\":\"MESNIL-SUR-L'ESTREE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29009,48.7767]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26569,\"INSEE_Comm\":\"95429\",\"nomCom\":\"Montreuil-sur-Epte\",\"NOM_COM\":\"MONTREUIL-SUR-EPTE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68603,49.17041]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26575,\"INSEE_Comm\":\"14541\",\"nomCom\":\"Roque-Baignard\",\"NOM_COM\":\"LAROQUE-BAIGNARD\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09135,49.17766]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26582,\"INSEE_Comm\":\"28126\",\"nomCom\":\"Dancy\",\"NOM_COM\":\"DANCY\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46203,48.15276]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26588,\"INSEE_Comm\":\"14613\",\"nomCom\":\"Saint-Marcouf\",\"NOM_COM\":\"SAINT-MARCOUF\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.0021,49.25716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26615,\"INSEE_Comm\":\"14337\",\"nomCom\":\"Houblonni�re\",\"NOM_COM\":\"LAHOUBLONNIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10276,49.1233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26631,\"INSEE_Comm\":\"61197\",\"nomCom\":\"Gu�prei\",\"NOM_COM\":\"GUEPREI\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.01533,48.83563]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26632,\"INSEE_Comm\":\"14678\",\"nomCom\":\"Soumont-Saint-Quentin\",\"NOM_COM\":\"SOUMONT-SAINT-QUENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.23475,48.97922]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26633,\"INSEE_Comm\":\"14405\",\"nomCom\":\"Martigny-sur-l'Ante\",\"NOM_COM\":\"MARTIGNY-SUR-L'ANTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28705,48.89027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26634,\"INSEE_Comm\":\"14648\",\"nomCom\":\"Saint-Pierre-des-Ifs\",\"NOM_COM\":\"SAINT-PIERRE-DES-IFS\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16146,49.11476]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26636,\"INSEE_Comm\":\"14330\",\"nomCom\":\"Heurtevent\",\"NOM_COM\":\"HEURTEVENT\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13149,48.98206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26684,\"INSEE_Comm\":\"76437\",\"nomCom\":\"Meulers\",\"NOM_COM\":\"MEULERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22181,49.84121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26685,\"INSEE_Comm\":\"80096\",\"nomCom\":\"B�thencourt-sur-Mer\",\"NOM_COM\":\"BETHENCOURT-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49951,50.07539]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26686,\"INSEE_Comm\":\"76604\",\"nomCom\":\"Saint-Mards\",\"NOM_COM\":\"SAINT-MARDS\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01478,49.7606]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26687,\"INSEE_Comm\":\"27053\",\"nomCom\":\"Bec-Thomas\",\"NOM_COM\":\"LEBEC-THOMAS\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97578,49.23893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26688,\"INSEE_Comm\":\"76109\",\"nomCom\":\"Bois-H�roult\",\"NOM_COM\":\"BOIS-HEROULT\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4075,49.56439]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26689,\"INSEE_Comm\":\"27294\",\"nomCom\":\"Grainville\",\"NOM_COM\":\"GRAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36786,49.34503]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26690,\"INSEE_Comm\":\"76292\",\"nomCom\":\"Fry\",\"NOM_COM\":\"FRY\",\"Statut\":\"Communesimple\",\"idCan\":\"7601\",\"nomCan\":\"Argueil\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53745,49.52655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26691,\"INSEE_Comm\":\"80172\",\"nomCom\":\"Cappy\",\"NOM_COM\":\"CAPPY\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76318,49.92563]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26692,\"INSEE_Comm\":\"80664\",\"nomCom\":\"Rancourt\",\"NOM_COM\":\"RANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.90339,50.00303]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26693,\"INSEE_Comm\":\"60605\",\"nomCom\":\"Sarnois\",\"NOM_COM\":\"SARNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92483,49.6804]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26694,\"INSEE_Comm\":\"60681\",\"nomCom\":\"Villers-Saint-Barth�lemy\",\"NOM_COM\":\"VILLERS-SAINT-BARTHELEMY\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95463,49.40301]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26695,\"INSEE_Comm\":\"60672\",\"nomCom\":\"Vez\",\"NOM_COM\":\"VEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00864,49.2569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26696,\"INSEE_Comm\":\"60006\",\"nomCom\":\"Ageux\",\"NOM_COM\":\"LESAGEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58893,49.31833]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26697,\"INSEE_Comm\":\"80095\",\"nomCom\":\"Bertrancourt\",\"NOM_COM\":\"BERTRANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56425,50.10082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26699,\"INSEE_Comm\":\"80487\",\"nomCom\":\"Longavesnes\",\"NOM_COM\":\"LONGAVESNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06173,49.9718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26713,\"INSEE_Comm\":\"80422\",\"nomCom\":\"Hautvillers-Ouville\",\"NOM_COM\":\"HAUTVILLERS-OUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":65,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82016,50.16974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26719,\"INSEE_Comm\":\"76366\",\"nomCom\":\"Houlme\",\"NOM_COM\":\"LEHOULME\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":102,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0367,49.51099]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26739,\"INSEE_Comm\":\"76167\",\"nomCom\":\"Cauville-sur-Mer\",\"NOM_COM\":\"CAUVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":67,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14498,49.59384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26740,\"INSEE_Comm\":\"76088\",\"nomCom\":\"Berville-sur-Seine\",\"NOM_COM\":\"BERVILLE-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89481,49.47433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26767,\"INSEE_Comm\":\"27107\",\"nomCom\":\"Bourneville\",\"NOM_COM\":\"BOURNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":73,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62024,49.39188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26768,\"INSEE_Comm\":\"27437\",\"nomCom\":\"Nojeon-en-Vexin\",\"NOM_COM\":\"NOJEON-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55624,49.32916]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26769,\"INSEE_Comm\":\"27480\",\"nomCom\":\"Puchay\",\"NOM_COM\":\"PUCHAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52613,49.35403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26770,\"INSEE_Comm\":\"27528\",\"nomCom\":\"Vaudreuil\",\"NOM_COM\":\"LEVAUDREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":90,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19895,49.261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26780,\"INSEE_Comm\":\"14336\",\"nomCom\":\"Hottot-les-Bagues\",\"NOM_COM\":\"HOTTOT-LES-BAGUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1411\",\"nomCan\":\"Caumont-l'�vent�\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.6525,49.14622]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26791,\"INSEE_Comm\":\"78475\",\"nomCom\":\"Osmoy\",\"NOM_COM\":\"OSMOY\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71711,48.864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26792,\"INSEE_Comm\":\"78647\",\"nomCom\":\"Vert\",\"NOM_COM\":\"VERT\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6832,48.9403]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26793,\"INSEE_Comm\":\"28426\",\"nomCom\":\"Ymonville\",\"NOM_COM\":\"YMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75056,48.2496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26794,\"INSEE_Comm\":\"28143\",\"nomCom\":\"Escorpain\",\"NOM_COM\":\"ESCORPAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21491,48.71975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26816,\"INSEE_Comm\":\"14311\",\"nomCom\":\"Grainville-sur-Odon\",\"NOM_COM\":\"GRAINVILLE-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53146,49.13893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26818,\"INSEE_Comm\":\"78168\",\"nomCom\":\"Coigni�res\",\"NOM_COM\":\"COIGNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7834\",\"nomCan\":\"Maurepas\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":113,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91382,48.74977]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26819,\"INSEE_Comm\":\"78010\",\"nomCom\":\"Alluets-le-Roi\",\"NOM_COM\":\"LESALLUETS-LE-ROI\",\"Statut\":\"Communesimple\",\"idCan\":\"7817\",\"nomCan\":\"Poissy-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91476,48.91432]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26820,\"INSEE_Comm\":\"14195\",\"nomCom\":\"Courvaudon\",\"NOM_COM\":\"COURVAUDON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5739,49.02683]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26824,\"INSEE_Comm\":\"14395\",\"nomCom\":\"Mallou�\",\"NOM_COM\":\"MALLOUE\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.95457,48.9444]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26826,\"INSEE_Comm\":\"80628\",\"nomCom\":\"Plessier-Rozainvillers\",\"NOM_COM\":\"LEPLESSIER-ROZAINVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5526,49.75156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26827,\"INSEE_Comm\":\"80059\",\"nomCom\":\"Bazentin\",\"NOM_COM\":\"BAZENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76648,50.02978]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26828,\"INSEE_Comm\":\"80176\",\"nomCom\":\"Carr�puis\",\"NOM_COM\":\"CARREPUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81927,49.70456]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26829,\"INSEE_Comm\":\"80676\",\"nomCom\":\"Roiglise\",\"NOM_COM\":\"ROIGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8347,49.6828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26833,\"INSEE_Comm\":\"80787\",\"nomCom\":\"Vercourt\",\"NOM_COM\":\"VERCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70417,50.29643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26884,\"INSEE_Comm\":\"60171\",\"nomCom\":\"Courtieux\",\"NOM_COM\":\"COURTIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.08511,49.3852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26889,\"INSEE_Comm\":\"28151\",\"nomCom\":\"Fessanvilliers-Mattanvilliers\",\"NOM_COM\":\"FESSANVILLIERS-MATTANVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03522,48.70367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26893,\"INSEE_Comm\":\"14523\",\"nomCom\":\"Proussy\",\"NOM_COM\":\"PROUSSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.55285,48.87953]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26904,\"INSEE_Comm\":\"80540\",\"nomCom\":\"Mesnil-Martinsart\",\"NOM_COM\":\"MESNIL-MARTINSART\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63952,50.04762]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26912,\"INSEE_Comm\":\"95379\",\"nomCom\":\"Maud�tour-en-Vexin\",\"NOM_COM\":\"MAUDETOUR-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77708,49.10897]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26930,\"INSEE_Comm\":\"27350\",\"nomCom\":\"Illiers-l'�v�que\",\"NOM_COM\":\"ILLIERS-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25959,48.82499]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26948,\"INSEE_Comm\":\"27231\",\"nomCom\":\"Fains\",\"NOM_COM\":\"FAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38488,48.99686]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26963,\"INSEE_Comm\":\"27460\",\"nomCom\":\"Plainville\",\"NOM_COM\":\"PLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49963,49.07895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26964,\"INSEE_Comm\":\"27279\",\"nomCom\":\"Gasny\",\"NOM_COM\":\"GASNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":103,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59976,49.10202]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26966,\"INSEE_Comm\":\"27253\",\"nomCom\":\"Fontaine-la-Soret\",\"NOM_COM\":\"FONTAINE-LA-SORET\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7085,49.14538]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26970,\"INSEE_Comm\":\"61457\",\"nomCom\":\"Saint-Symphorien-des-Bruy�res\",\"NOM_COM\":\"SAINT-SYMPHORIEN-DES-BRUYERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6137\",\"nomCan\":\"Aigle-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55743,48.78644]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26989,\"INSEE_Comm\":\"14378\",\"nomCom\":\"Longueville\",\"NOM_COM\":\"LONGUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.95729,49.3355]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26990,\"INSEE_Comm\":\"61153\",\"nomCom\":\"�couch�\",\"NOM_COM\":\"ECOUCHE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.11107,48.71548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26992,\"INSEE_Comm\":\"14580\",\"nomCom\":\"Saint-Georges-en-Auge\",\"NOM_COM\":\"SAINT-GEORGES-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07084,48.98854]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26993,\"INSEE_Comm\":\"61069\",\"nomCom\":\"Cahan\",\"NOM_COM\":\"CAHAN\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44611,48.85973]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":26994,\"INSEE_Comm\":\"14517\",\"nomCom\":\"Poussy-la-Campagne\",\"NOM_COM\":\"POUSSY-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.23113,49.0789]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27004,\"INSEE_Comm\":\"14468\",\"nomCom\":\"Noron-la-Poterie\",\"NOM_COM\":\"NORON-LA-POTERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.77537,49.22397]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27029,\"INSEE_Comm\":\"60172\",\"nomCom\":\"Coye-la-For�t\",\"NOM_COM\":\"COYE-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"6036\",\"nomCan\":\"Chantilly\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47046,49.14499]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27030,\"INSEE_Comm\":\"60005\",\"nomCom\":\"Acy-en-Multien\",\"NOM_COM\":\"ACY-EN-MULTIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95509,49.10878]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27033,\"INSEE_Comm\":\"14670\",\"nomCom\":\"Secqueville-en-Bessin\",\"NOM_COM\":\"SECQUEVILLE-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.51088,49.23483]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27049,\"INSEE_Comm\":\"14312\",\"nomCom\":\"Grandcamp-Maisy\",\"NOM_COM\":\"GRANDCAMP-MAISY\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":199,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.04382,49.37521]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27050,\"INSEE_Comm\":\"76281\",\"nomCom\":\"Fr�naye\",\"NOM_COM\":\"LAFRENAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":89,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57346,49.52084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27051,\"INSEE_Comm\":\"76245\",\"nomCom\":\"Eslettes\",\"NOM_COM\":\"ESLETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04733,49.54721]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27052,\"INSEE_Comm\":\"80213\",\"nomCom\":\"Cottenchy\",\"NOM_COM\":\"COTTENCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36832,49.80719]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27053,\"INSEE_Comm\":\"60336\",\"nomCom\":\"Lachauss�e-du-Bois-d'�cu\",\"NOM_COM\":\"LACHAUSSEE-DU-BOIS-D'ECU\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17628,49.56224]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27054,\"INSEE_Comm\":\"60457\",\"nomCom\":\"Neuville-Saint-Pierre\",\"NOM_COM\":\"LANEUVILLE-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19557,49.53189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27055,\"INSEE_Comm\":\"60646\",\"nomCom\":\"Troissereux\",\"NOM_COM\":\"TROISSEREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05738,49.48391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27056,\"INSEE_Comm\":\"60260\",\"nomCom\":\"Fresnoy-la-Rivi�re\",\"NOM_COM\":\"FRESNOY-LA-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.927,49.27815]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27057,\"INSEE_Comm\":\"80805\",\"nomCom\":\"Villers-Tournelle\",\"NOM_COM\":\"VILLERS-TOURNELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46394,49.65122]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27058,\"INSEE_Comm\":\"27333\",\"nomCom\":\"Heudicourt\",\"NOM_COM\":\"HEUDICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66268,49.33439]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27059,\"INSEE_Comm\":\"80626\",\"nomCom\":\"Pissy\",\"NOM_COM\":\"PISSY\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12932,49.8666]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27060,\"INSEE_Comm\":\"80372\",\"nomCom\":\"Frucourt\",\"NOM_COM\":\"FRUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81099,49.99842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27073,\"INSEE_Comm\":\"80057\",\"nomCom\":\"Bayencourt\",\"NOM_COM\":\"BAYENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57225,50.13166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27093,\"INSEE_Comm\":\"76307\",\"nomCom\":\"Gonneville-la-Mallet\",\"NOM_COM\":\"GONNEVILLE-LA-MALLET\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21355,49.63151]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27094,\"INSEE_Comm\":\"76684\",\"nomCom\":\"Tancarville\",\"NOM_COM\":\"TANCARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45186,49.48136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27095,\"INSEE_Comm\":\"76172\",\"nomCom\":\"Chapelle-sur-Dun\",\"NOM_COM\":\"LACHAPELLE-SUR-DUN\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84589,49.85779]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27096,\"INSEE_Comm\":\"76549\",\"nomCom\":\"Sa�ne-Saint-Just\",\"NOM_COM\":\"SAANE-SAINT-JUST\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92355,49.7569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27097,\"INSEE_Comm\":\"76082\",\"nomCom\":\"Berni�res\",\"NOM_COM\":\"BERNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47744,49.62231]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27105,\"INSEE_Comm\":\"28118\",\"nomCom\":\"Croisilles\",\"NOM_COM\":\"CROISILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49908,48.69078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27106,\"INSEE_Comm\":\"78009\",\"nomCom\":\"Allainville\",\"NOM_COM\":\"ALLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90248,48.4678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27110,\"INSEE_Comm\":\"27194\",\"nomCom\":\"Cuverville\",\"NOM_COM\":\"CUVERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.37038,49.28238]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27127,\"INSEE_Comm\":\"27497\",\"nomCom\":\"Rougemontiers\",\"NOM_COM\":\"ROUGEMONTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72478,49.35793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27130,\"INSEE_Comm\":\"27067\",\"nomCom\":\"B�zu-Saint-�loi\",\"NOM_COM\":\"BEZU-SAINT-ELOI\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":98,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6831,49.30467]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27148,\"INSEE_Comm\":\"78686\",\"nomCom\":\"Viroflay\",\"NOM_COM\":\"VIROFLAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7831\",\"nomCan\":\"Viroflay\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":234,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17152,48.8024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27151,\"INSEE_Comm\":\"60588\",\"nomCom\":\"Saint-Maur\",\"NOM_COM\":\"SAINT-MAUR\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92154,49.61666]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27154,\"INSEE_Comm\":\"14721\",\"nomCom\":\"Vacognes-Neuilly\",\"NOM_COM\":\"VACOGNES-NEUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53441,49.0853]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27157,\"INSEE_Comm\":\"95351\",\"nomCom\":\"Louvres\",\"NOM_COM\":\"LOUVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"9530\",\"nomCan\":\"Goussainville\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":286,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50359,49.0423]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27159,\"INSEE_Comm\":\"80589\",\"nomCom\":\"Neuilly-le-Dien\",\"NOM_COM\":\"NEUILLY-LE-DIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04754,50.22609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27161,\"INSEE_Comm\":\"78283\",\"nomCom\":\"Grandchamp\",\"NOM_COM\":\"GRANDCHAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61429,48.71976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27166,\"INSEE_Comm\":\"60362\",\"nomCom\":\"Libermont\",\"NOM_COM\":\"LIBERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98026,49.68803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27170,\"INSEE_Comm\":\"80552\",\"nomCom\":\"Moislains\",\"NOM_COM\":\"MOISLAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96707,49.99446]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27171,\"INSEE_Comm\":\"80314\",\"nomCom\":\"Flers\",\"NOM_COM\":\"FLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81774,50.05065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27174,\"INSEE_Comm\":\"80208\",\"nomCom\":\"Conteville\",\"NOM_COM\":\"CONTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06745,50.17941]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27225,\"INSEE_Comm\":\"60654\",\"nomCom\":\"Vand�licourt\",\"NOM_COM\":\"VANDELICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79667,49.5083]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27233,\"INSEE_Comm\":\"61064\",\"nomCom\":\"Brullemail\",\"NOM_COM\":\"BRULLEMAIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6109\",\"nomCan\":\"Courtomer\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32421,48.65952]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27258,\"INSEE_Comm\":\"14140\",\"nomCom\":\"Castillon\",\"NOM_COM\":\"CASTILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.79759,49.19539]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27276,\"INSEE_Comm\":\"76232\",\"nomCom\":\"�letot\",\"NOM_COM\":\"ELETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45795,49.78975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27286,\"INSEE_Comm\":\"28082\",\"nomCom\":\"Charpont\",\"NOM_COM\":\"CHARPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43244,48.69584]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27287,\"INSEE_Comm\":\"14565\",\"nomCom\":\"Saint-C�me-de-Fresn�\",\"NOM_COM\":\"SAINT-COME-DE-FRESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60221,49.32654]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27295,\"INSEE_Comm\":\"60261\",\"nomCom\":\"Fresnoy-le-Luat\",\"NOM_COM\":\"FRESNOY-LE-LUAT\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76284,49.2127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27304,\"INSEE_Comm\":\"28400\",\"nomCom\":\"Varize\",\"NOM_COM\":\"VARIZE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52562,48.08238]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27324,\"INSEE_Comm\":\"27659\",\"nomCom\":\"Trinit�\",\"NOM_COM\":\"LATRINITE\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23676,48.9869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27330,\"INSEE_Comm\":\"14304\",\"nomCom\":\"Gonneville-sur-Honfleur\",\"NOM_COM\":\"GONNEVILLE-SUR-HONFLEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23615,49.38134]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27335,\"INSEE_Comm\":\"95012\",\"nomCom\":\"Amenucourt\",\"NOM_COM\":\"AMENUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65005,49.11033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27339,\"INSEE_Comm\":\"14179\",\"nomCom\":\"Cordebugle\",\"NOM_COM\":\"CORDEBUGLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37984,49.11343]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27344,\"INSEE_Comm\":\"27383\",\"nomCom\":\"Mandres\",\"NOM_COM\":\"MANDRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85125,48.75284]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27345,\"INSEE_Comm\":\"27208\",\"nomCom\":\"Duranville\",\"NOM_COM\":\"DURANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4997,49.143]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27363,\"INSEE_Comm\":\"95101\",\"nomCom\":\"Bray-et-L�\",\"NOM_COM\":\"BRAY-ET-LU\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66566,49.14195]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27364,\"INSEE_Comm\":\"95611\",\"nomCom\":\"Theuville\",\"NOM_COM\":\"THEUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06935,49.15701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27365,\"INSEE_Comm\":\"95271\",\"nomCom\":\"G�nicourt\",\"NOM_COM\":\"GENICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06073,49.09484]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27366,\"INSEE_Comm\":\"61431\",\"nomCom\":\"Saint-Michel-des-Andaines\",\"NOM_COM\":\"SAINT-MICHEL-DES-ANDAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42112,48.58366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27368,\"INSEE_Comm\":\"61194\",\"nomCom\":\"Goulet\",\"NOM_COM\":\"GOULET\",\"Statut\":\"Communesimple\",\"idCan\":\"6111\",\"nomCan\":\"�couch�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08973,48.73608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27371,\"INSEE_Comm\":\"14028\",\"nomCom\":\"Auquainville\",\"NOM_COM\":\"AUQUAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24036,49.05551]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27396,\"INSEE_Comm\":\"95116\",\"nomCom\":\"Bruy�res-sur-Oise\",\"NOM_COM\":\"BRUYERES-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9503\",\"nomCan\":\"Beaumont-sur-Oise\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":236,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32879,49.16101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27425,\"INSEE_Comm\":\"27380\",\"nomCom\":\"Malleville-sur-le-Bec\",\"NOM_COM\":\"MALLEVILLE-SUR-LE-BEC\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74597,49.24188]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27426,\"INSEE_Comm\":\"76389\",\"nomCom\":\"Lintot-les-Bois\",\"NOM_COM\":\"LINTOT-LES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07001,49.80107]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27427,\"INSEE_Comm\":\"76733\",\"nomCom\":\"Ventes-Saint-R�my\",\"NOM_COM\":\"VENTES-SAINT-REMY\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30026,49.71161]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27428,\"INSEE_Comm\":\"76077\",\"nomCom\":\"B�nesville\",\"NOM_COM\":\"BENESVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82815,49.75172]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27429,\"INSEE_Comm\":\"76120\",\"nomCom\":\"Bosc-Bordel\",\"NOM_COM\":\"BOSC-BORDEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4093,49.60492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27430,\"INSEE_Comm\":\"76555\",\"nomCom\":\"Saint-Andr�-sur-Cailly\",\"NOM_COM\":\"SAINT-ANDRE-SUR-CAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22162,49.54893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27431,\"INSEE_Comm\":\"80577\",\"nomCom\":\"Moyencourt-l�s-Poix\",\"NOM_COM\":\"MOYENCOURT-LES-POIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04097,49.79062]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27432,\"INSEE_Comm\":\"80193\",\"nomCom\":\"Chirmont\",\"NOM_COM\":\"CHIRMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37184,49.71488]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27433,\"INSEE_Comm\":\"80651\",\"nomCom\":\"Quesne\",\"NOM_COM\":\"LEQUESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79202,49.8602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27434,\"INSEE_Comm\":\"60296\",\"nomCom\":\"Hannaches\",\"NOM_COM\":\"HANNACHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8084,49.50877]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27435,\"INSEE_Comm\":\"60043\",\"nomCom\":\"Bailly\",\"NOM_COM\":\"BAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98239,49.49946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27436,\"INSEE_Comm\":\"60130\",\"nomCom\":\"Catenoy\",\"NOM_COM\":\"CATENOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.518,49.37915]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27437,\"INSEE_Comm\":\"60511\",\"nomCom\":\"Porqu�ricourt\",\"NOM_COM\":\"PORQUERICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95465,49.59688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27439,\"INSEE_Comm\":\"60641\",\"nomCom\":\"Tracy-le-Mont\",\"NOM_COM\":\"TRACY-LE-MONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00362,49.46908]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27440,\"INSEE_Comm\":\"80225\",\"nomCom\":\"Creuse\",\"NOM_COM\":\"CREUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15949,49.83543]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27441,\"INSEE_Comm\":\"80156\",\"nomCom\":\"Bussy-l�s-Daours\",\"NOM_COM\":\"BUSSY-LES-DAOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41235,49.91249]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27448,\"INSEE_Comm\":\"60059\",\"nomCom\":\"B�h�ricourt\",\"NOM_COM\":\"BEHERICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06411,49.59804]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27452,\"INSEE_Comm\":\"80629\",\"nomCom\":\"Poeuilly\",\"NOM_COM\":\"POEUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09642,49.88412]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27459,\"INSEE_Comm\":\"80055\",\"nomCom\":\"Barly\",\"NOM_COM\":\"BARLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27424,50.20571]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27460,\"INSEE_Comm\":\"80440\",\"nomCom\":\"Hiermont\",\"NOM_COM\":\"HIERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07191,50.19981]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27485,\"INSEE_Comm\":\"27643\",\"nomCom\":\"Tilli�res-sur-Avre\",\"NOM_COM\":\"TILLIERES-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0282,48.76112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27502,\"INSEE_Comm\":\"27617\",\"nomCom\":\"Saussay-la-Campagne\",\"NOM_COM\":\"SAUSSAY-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50847,49.31892]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27503,\"INSEE_Comm\":\"27005\",\"nomCom\":\"Ailly\",\"NOM_COM\":\"AILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24431,49.15753]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27504,\"INSEE_Comm\":\"27275\",\"nomCom\":\"Gaillon\",\"NOM_COM\":\"GAILLON\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2719\",\"nomCan\":\"Gaillon\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":650,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34701,49.15912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27519,\"INSEE_Comm\":\"78206\",\"nomCom\":\"Ecquevilly\",\"NOM_COM\":\"ECQUEVILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":401,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92004,48.94593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27520,\"INSEE_Comm\":\"28166\",\"nomCom\":\"Friaize\",\"NOM_COM\":\"FRIAIZE\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12216,48.4299]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27534,\"INSEE_Comm\":\"27631\",\"nomCom\":\"Thierville\",\"NOM_COM\":\"THIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71733,49.26341]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27535,\"INSEE_Comm\":\"61148\",\"nomCom\":\"Durcet\",\"NOM_COM\":\"DURCET\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44175,48.74097]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27541,\"INSEE_Comm\":\"95304\",\"nomCom\":\"H�douville\",\"NOM_COM\":\"HEDOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17769,49.15858]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27543,\"INSEE_Comm\":\"78236\",\"nomCom\":\"Flexanville\",\"NOM_COM\":\"FLEXANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74312,48.85511]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27545,\"INSEE_Comm\":\"80741\",\"nomCom\":\"Soy�court\",\"NOM_COM\":\"SOYECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79513,49.86381]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27546,\"INSEE_Comm\":\"80760\",\"nomCom\":\"Tilloy-Floriville\",\"NOM_COM\":\"TILLOY-FLORIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5987,49.99154]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27547,\"INSEE_Comm\":\"80368\",\"nomCom\":\"Friville-Escarbotin\",\"NOM_COM\":\"FRIVILLE-ESCARBOTIN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":286,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54351,50.08608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27549,\"INSEE_Comm\":\"80557\",\"nomCom\":\"Estr�es-Mons\",\"NOM_COM\":\"ESTREES-MONS\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.00855,49.87927]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27550,\"INSEE_Comm\":\"80799\",\"nomCom\":\"Villers-Bretonneux\",\"NOM_COM\":\"VILLERS-BRETONNEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":200,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51947,49.86499]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27552,\"INSEE_Comm\":\"80034\",\"nomCom\":\"Athies\",\"NOM_COM\":\"ATHIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97748,49.85699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27553,\"INSEE_Comm\":\"80038\",\"nomCom\":\"Auchonvillers\",\"NOM_COM\":\"AUCHONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63331,50.08201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27554,\"INSEE_Comm\":\"80736\",\"nomCom\":\"Sorel-en-Vimeu\",\"NOM_COM\":\"SOREL-EN-VIMEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91306,50.01254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27555,\"INSEE_Comm\":\"80671\",\"nomCom\":\"Ribeaucourt\",\"NOM_COM\":\"RIBEAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1191,50.11928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27584,\"INSEE_Comm\":\"61281\",\"nomCom\":\"Moncy\",\"NOM_COM\":\"MONCY\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.67454,48.83322]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27593,\"INSEE_Comm\":\"76394\",\"nomCom\":\"Longroy\",\"NOM_COM\":\"LONGROY\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53463,49.9812]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27620,\"INSEE_Comm\":\"80265\",\"nomCom\":\"Embreville\",\"NOM_COM\":\"EMBREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55243,50.03296]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27624,\"INSEE_Comm\":\"78381\",\"nomCom\":\"Maulette\",\"NOM_COM\":\"MAULETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61644,48.78391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27626,\"INSEE_Comm\":\"95543\",\"nomCom\":\"Saint-Cyr-en-Arthies\",\"NOM_COM\":\"SAINT-CYR-EN-ARTHIES\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74196,49.05913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27627,\"INSEE_Comm\":\"78531\",\"nomCom\":\"Rosny-sur-Seine\",\"NOM_COM\":\"ROSNY-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7833\",\"nomCan\":\"Mantes-la-Ville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":625,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6082,48.99643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27638,\"INSEE_Comm\":\"28095\",\"nomCom\":\"Chauffours\",\"NOM_COM\":\"CHAUFFOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33692,48.39449]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27653,\"INSEE_Comm\":\"76333\",\"nomCom\":\"Guerville\",\"NOM_COM\":\"GUERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52561,49.95229]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27654,\"INSEE_Comm\":\"80250\",\"nomCom\":\"Domvast\",\"NOM_COM\":\"DOMVAST\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90448,50.20187]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27669,\"INSEE_Comm\":\"27336\",\"nomCom\":\"Heuni�re\",\"NOM_COM\":\"LAHEUNIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2740\",\"nomCan\":\"Vernon-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41308,49.06497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27689,\"INSEE_Comm\":\"78503\",\"nomCom\":\"Port-Villez\",\"NOM_COM\":\"PORT-VILLEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51634,49.05796]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27691,\"INSEE_Comm\":\"27158\",\"nomCom\":\"Cierrey\",\"NOM_COM\":\"CIERREY\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26605,49.00177]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27708,\"INSEE_Comm\":\"14358\",\"nomCom\":\"L�aupartie\",\"NOM_COM\":\"LEAUPARTIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05277,49.18023]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27709,\"INSEE_Comm\":\"27696\",\"nomCom\":\"Villiers-en-D�soeuvre\",\"NOM_COM\":\"VILLIERS-EN-DESOEUVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48073,48.95787]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27714,\"INSEE_Comm\":\"27192\",\"nomCom\":\"Crosville-la-Vieille\",\"NOM_COM\":\"CROSVILLE-LA-VIEILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93154,49.15153]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27718,\"INSEE_Comm\":\"80218\",\"nomCom\":\"Courcelles-sous-Moyencourt\",\"NOM_COM\":\"COURCELLES-SOUS-MOYENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04154,49.80972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27720,\"INSEE_Comm\":\"61461\",\"nomCom\":\"Sap-Andr�\",\"NOM_COM\":\"LESAP-ANDRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.38987,48.82882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27721,\"INSEE_Comm\":\"27112\",\"nomCom\":\"Breteuil\",\"NOM_COM\":\"BRETEUIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":84,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8999,48.85254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27739,\"INSEE_Comm\":\"60293\",\"nomCom\":\"Hadancourt-le-Haut-Clocher\",\"NOM_COM\":\"HADANCOURT-LE-HAUT-CLOCHER\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85312,49.18894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27740,\"INSEE_Comm\":\"78524\",\"nomCom\":\"Rocquencourt\",\"NOM_COM\":\"ROCQUENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7832\",\"nomCan\":\"Chesnay\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10442,48.83272]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27741,\"INSEE_Comm\":\"95002\",\"nomCom\":\"Ableiges\",\"NOM_COM\":\"ABLEIGES\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97477,49.08565]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27742,\"INSEE_Comm\":\"61174\",\"nomCom\":\"For�t-Auvray\",\"NOM_COM\":\"LAFORET-AUVRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35271,48.80601]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27743,\"INSEE_Comm\":\"14158\",\"nomCom\":\"Chicheboville\",\"NOM_COM\":\"CHICHEBOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.21996,49.10512]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27744,\"INSEE_Comm\":\"61417\",\"nomCom\":\"Saint-Loyer-des-Champs\",\"NOM_COM\":\"SAINT-LOYER-DES-CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02955,48.70065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27745,\"INSEE_Comm\":\"14088\",\"nomCom\":\"Bons-Tassilly\",\"NOM_COM\":\"BONS-TASSILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.2305,48.95925]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27747,\"INSEE_Comm\":\"61401\",\"nomCom\":\"Saint-Gilles-des-Marais\",\"NOM_COM\":\"SAINT-GILLES-DES-MARAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.69759,48.58495]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27748,\"INSEE_Comm\":\"14743\",\"nomCom\":\"Victot-Pontfol\",\"NOM_COM\":\"VICTOT-PONTFOL\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.00949,49.16802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27778,\"INSEE_Comm\":\"61403\",\"nomCom\":\"Saint-Hilaire-la-G�rard\",\"NOM_COM\":\"SAINT-HILAIRE-LA-GERARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04969,48.59456]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27797,\"INSEE_Comm\":\"76745\",\"nomCom\":\"Villy-sur-Y�res\",\"NOM_COM\":\"VILLY-SUR-YERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45738,49.9414]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27803,\"INSEE_Comm\":\"76064\",\"nomCom\":\"Beaurepaire\",\"NOM_COM\":\"BEAUREPAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21816,49.65785]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27806,\"INSEE_Comm\":\"14681\",\"nomCom\":\"Surrain\",\"NOM_COM\":\"SURRAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.85492,49.3284]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27807,\"INSEE_Comm\":\"27133\",\"nomCom\":\"Caumont\",\"NOM_COM\":\"CAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.90846,49.36667]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27808,\"INSEE_Comm\":\"27062\",\"nomCom\":\"Berville-en-Roumois\",\"NOM_COM\":\"BERVILLE-EN-ROUMOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":66,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82761,49.2948]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27809,\"INSEE_Comm\":\"76207\",\"nomCom\":\"Cuverville-sur-Y�res\",\"NOM_COM\":\"CUVERVILLE-SUR-YERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38873,49.95158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27810,\"INSEE_Comm\":\"76754\",\"nomCom\":\"Yport\",\"NOM_COM\":\"YPORT\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31433,49.73469]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27811,\"INSEE_Comm\":\"14104\",\"nomCom\":\"Br�vedent\",\"NOM_COM\":\"LEBREVEDENT\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29388,49.22698]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27812,\"INSEE_Comm\":\"80188\",\"nomCom\":\"Chaussoy-Epagny\",\"NOM_COM\":\"CHAUSSOY-EPAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32882,49.7215]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27813,\"INSEE_Comm\":\"80033\",\"nomCom\":\"Assevillers\",\"NOM_COM\":\"ASSEVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.84167,49.89844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27814,\"INSEE_Comm\":\"80542\",\"nomCom\":\"Mesnil-Saint-Nicaise\",\"NOM_COM\":\"MESNIL-SAINT-NICAISE\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91323,49.77845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27815,\"INSEE_Comm\":\"80048\",\"nomCom\":\"Avesnes-Chaussoy\",\"NOM_COM\":\"AVESNES-CHAUSSOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86378,49.89307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27816,\"INSEE_Comm\":\"60180\",\"nomCom\":\"Crillon\",\"NOM_COM\":\"CRILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92586,49.52602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27817,\"INSEE_Comm\":\"60242\",\"nomCom\":\"Fontaine-Lavaganne\",\"NOM_COM\":\"FONTAINE-LAVAGANNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95433,49.59862]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27818,\"INSEE_Comm\":\"60361\",\"nomCom\":\"Liancourt-Saint-Pierre\",\"NOM_COM\":\"LIANCOURT-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90631,49.233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27819,\"INSEE_Comm\":\"60210\",\"nomCom\":\"�pineuse\",\"NOM_COM\":\"EPINEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55021,49.40021]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27820,\"INSEE_Comm\":\"60635\",\"nomCom\":\"Thiverny\",\"NOM_COM\":\"THIVERNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42786,49.246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27821,\"INSEE_Comm\":\"60028\",\"nomCom\":\"Aumont-en-Halatte\",\"NOM_COM\":\"AUMONT-EN-HALATTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55263,49.233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27822,\"INSEE_Comm\":\"60340\",\"nomCom\":\"Lagny\",\"NOM_COM\":\"LAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91471,49.61043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27824,\"INSEE_Comm\":\"60418\",\"nomCom\":\"Montiers\",\"NOM_COM\":\"MONTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56966,49.50388]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27825,\"INSEE_Comm\":\"80460\",\"nomCom\":\"Lamaronde\",\"NOM_COM\":\"LAMARONDE\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90392,49.80382]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27826,\"INSEE_Comm\":\"80276\",\"nomCom\":\"�quennes-�ramecourt\",\"NOM_COM\":\"EQUENNES-ERAMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95586,49.72788]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27853,\"INSEE_Comm\":\"76723\",\"nomCom\":\"Vassonville\",\"NOM_COM\":\"VASSONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0765,49.68868]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27854,\"INSEE_Comm\":\"76030\",\"nomCom\":\"Aubermesnil-Beaumais\",\"NOM_COM\":\"AUBERMESNIL-BEAUMAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12121,49.8475]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27855,\"INSEE_Comm\":\"76017\",\"nomCom\":\"Anglesqueville-l'Esneval\",\"NOM_COM\":\"ANGLESQUEVILLE-L'ESNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23544,49.63045]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27856,\"INSEE_Comm\":\"76043\",\"nomCom\":\"Auzebosc\",\"NOM_COM\":\"AUZEBOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73365,49.60137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27857,\"INSEE_Comm\":\"76223\",\"nomCom\":\"�calles-Alix\",\"NOM_COM\":\"ECALLES-ALIX\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80976,49.61734]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27862,\"INSEE_Comm\":\"28303\",\"nomCom\":\"Poupry\",\"NOM_COM\":\"POUPRY\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83298,48.09965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27863,\"INSEE_Comm\":\"28372\",\"nomCom\":\"Senantes\",\"NOM_COM\":\"SENANTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58443,48.65606]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27864,\"INSEE_Comm\":\"78113\",\"nomCom\":\"Brueil-en-Vexin\",\"NOM_COM\":\"BRUEIL-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81318,49.02642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27870,\"INSEE_Comm\":\"27145\",\"nomCom\":\"Chanteloup\",\"NOM_COM\":\"CHANTELOUP\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02887,48.88518]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27882,\"INSEE_Comm\":\"27060\",\"nomCom\":\"Berthenonville\",\"NOM_COM\":\"BERTHENONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6452,49.18362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27902,\"INSEE_Comm\":\"28369\",\"nomCom\":\"Saulni�res\",\"NOM_COM\":\"SAULNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26633,48.66505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27908,\"INSEE_Comm\":\"27594\",\"nomCom\":\"Saint-Pierre-des-Ifs\",\"NOM_COM\":\"SAINT-PIERRE-DES-IFS\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60855,49.26557]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27913,\"INSEE_Comm\":\"60233\",\"nomCom\":\"Feuqui�res\",\"NOM_COM\":\"FEUQUIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84994,49.64982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27914,\"INSEE_Comm\":\"60614\",\"nomCom\":\"Serans\",\"NOM_COM\":\"SERANS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82747,49.19084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27916,\"INSEE_Comm\":\"14510\",\"nomCom\":\"Pommeraye\",\"NOM_COM\":\"LAPOMMERAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41548,48.9094]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27919,\"INSEE_Comm\":\"95489\",\"nomCom\":\"Piscop\",\"NOM_COM\":\"PISCOP\",\"Statut\":\"Communesimple\",\"idCan\":\"9508\",\"nomCan\":\"�couen\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34203,49.01659]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27921,\"INSEE_Comm\":\"14396\",\"nomCom\":\"Maltot\",\"NOM_COM\":\"MALTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":129,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42298,49.1316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27928,\"INSEE_Comm\":\"76062\",\"nomCom\":\"Beaumont-le-Hareng\",\"NOM_COM\":\"BEAUMONT-LE-HARENG\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22007,49.66342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27929,\"INSEE_Comm\":\"80294\",\"nomCom\":\"�terpigny\",\"NOM_COM\":\"ETERPIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91603,49.88565]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27932,\"INSEE_Comm\":\"80269\",\"nomCom\":\"�paumesnil\",\"NOM_COM\":\"EPAUMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.855,49.91408]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27933,\"INSEE_Comm\":\"80566\",\"nomCom\":\"Fieffes-Montrelet\",\"NOM_COM\":\"FIEFFES-MONTRELET\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2169,50.0906]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27936,\"INSEE_Comm\":\"80806\",\"nomCom\":\"Villers-sur-Authie\",\"NOM_COM\":\"VILLERS-SUR-AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69212,50.31844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27949,\"INSEE_Comm\":\"61377\",\"nomCom\":\"Saint-Cornier-des-Landes\",\"NOM_COM\":\"SAINT-CORNIER-DES-LANDES\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.72612,48.72112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27992,\"INSEE_Comm\":\"61506\",\"nomCom\":\"Villers-en-Ouche\",\"NOM_COM\":\"VILLERS-EN-OUCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45466,48.86501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27993,\"INSEE_Comm\":\"27408\",\"nomCom\":\"M�zi�res-en-Vexin\",\"NOM_COM\":\"MEZIERES-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50318,49.17589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27996,\"INSEE_Comm\":\"27548\",\"nomCom\":\"Saint-Germain-sur-Avre\",\"NOM_COM\":\"SAINT-GERMAIN-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26278,48.77277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":27997,\"INSEE_Comm\":\"14416\",\"nomCom\":\"Mesnil-Caussois\",\"NOM_COM\":\"LEMESNIL-CAUSSOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.01088,48.85508]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28018,\"INSEE_Comm\":\"28290\",\"nomCom\":\"Orrouer\",\"NOM_COM\":\"ORROUER\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27864,48.40591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28019,\"INSEE_Comm\":\"61502\",\"nomCom\":\"Vidai\",\"NOM_COM\":\"VIDAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37659,48.46029]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28020,\"INSEE_Comm\":\"61501\",\"nomCom\":\"Verri�res\",\"NOM_COM\":\"VERRIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75177,48.39406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28022,\"INSEE_Comm\":\"61409\",\"nomCom\":\"Saint-Jean-de-la-For�t\",\"NOM_COM\":\"SAINT-JEAN-DE-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63826,48.38154]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28028,\"INSEE_Comm\":\"95040\",\"nomCom\":\"Avernes\",\"NOM_COM\":\"AVERNES\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86986,49.08879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28046,\"INSEE_Comm\":\"28401\",\"nomCom\":\"Vaupillon\",\"NOM_COM\":\"VAUPILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96968,48.46014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28048,\"INSEE_Comm\":\"27225\",\"nomCom\":\"Essarts\",\"NOM_COM\":\"LESESSARTS\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99396,48.8793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28075,\"INSEE_Comm\":\"27668\",\"nomCom\":\"Val-David\",\"NOM_COM\":\"LEVAL-DAVID\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26307,48.97886]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28080,\"INSEE_Comm\":\"78324\",\"nomCom\":\"Jouy-Mauvoisin\",\"NOM_COM\":\"JOUY-MAUVOISIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64659,48.97447]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28084,\"INSEE_Comm\":\"27429\",\"nomCom\":\"Neuilly\",\"NOM_COM\":\"NEUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41731,48.92953]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28092,\"INSEE_Comm\":\"27129\",\"nomCom\":\"Caorches-Saint-Nicolas\",\"NOM_COM\":\"CAORCHES-SAINT-NICOLAS\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54759,49.07822]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28095,\"INSEE_Comm\":\"27108\",\"nomCom\":\"Bourth\",\"NOM_COM\":\"BOURTH\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80618,48.76321]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28101,\"INSEE_Comm\":\"76600\",\"nomCom\":\"Saint-L�onard\",\"NOM_COM\":\"SAINT-LEONARD\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":114,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3419,49.73218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28108,\"INSEE_Comm\":\"95051\",\"nomCom\":\"Beauchamp\",\"NOM_COM\":\"BEAUCHAMP\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9528\",\"nomCan\":\"Beauchamp\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":94,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19223,49.01487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28109,\"INSEE_Comm\":\"95258\",\"nomCom\":\"Frouville\",\"NOM_COM\":\"FROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14711,49.15713]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28112,\"INSEE_Comm\":\"14386\",\"nomCom\":\"Magny-la-Campagne\",\"NOM_COM\":\"MAGNY-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09841,49.0494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28113,\"INSEE_Comm\":\"14749\",\"nomCom\":\"Vieux-Fum�\",\"NOM_COM\":\"VIEUX-FUME\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12929,49.06101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28114,\"INSEE_Comm\":\"14486\",\"nomCom\":\"Ouilly-le-Tesson\",\"NOM_COM\":\"OUILLY-LE-TESSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.21324,48.99091]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28115,\"INSEE_Comm\":\"14081\",\"nomCom\":\"Boissey\",\"NOM_COM\":\"BOISSEY\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04977,49.01984]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28117,\"INSEE_Comm\":\"61089\",\"nomCom\":\"Champosoult\",\"NOM_COM\":\"CHAMPOSOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16705,48.86332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28118,\"INSEE_Comm\":\"61025\",\"nomCom\":\"Baroche-sous-Luc�\",\"NOM_COM\":\"LABAROCHE-SOUS-LUCE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57378,48.53396]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28120,\"INSEE_Comm\":\"14538\",\"nomCom\":\"Rocquancourt\",\"NOM_COM\":\"ROCQUANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":85,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.31724,49.09564]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28122,\"INSEE_Comm\":\"14038\",\"nomCom\":\"Banville\",\"NOM_COM\":\"BANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48599,49.3092]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28152,\"INSEE_Comm\":\"60546\",\"nomCom\":\"Rosi�res\",\"NOM_COM\":\"ROSIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78101,49.18654]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28153,\"INSEE_Comm\":\"95141\",\"nomCom\":\"Charmont\",\"NOM_COM\":\"CHARMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78948,49.1369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28167,\"INSEE_Comm\":\"76283\",\"nomCom\":\"Fresles\",\"NOM_COM\":\"FRESLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34356,49.74604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28183,\"INSEE_Comm\":\"14107\",\"nomCom\":\"Bricqueville\",\"NOM_COM\":\"BRICQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.95694,49.28928]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28184,\"INSEE_Comm\":\"76492\",\"nomCom\":\"Ouville-la-Rivi�re\",\"NOM_COM\":\"OUVILLE-LA-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98254,49.87375]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28185,\"INSEE_Comm\":\"76511\",\"nomCom\":\"Preuseville\",\"NOM_COM\":\"PREUSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50532,49.88047]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28186,\"INSEE_Comm\":\"76525\",\"nomCom\":\"Ricarville\",\"NOM_COM\":\"RICARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60725,49.64199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28187,\"INSEE_Comm\":\"76118\",\"nomCom\":\"Bornambusc\",\"NOM_COM\":\"BORNAMBUSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35329,49.62555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28188,\"INSEE_Comm\":\"76016\",\"nomCom\":\"Anglesqueville-la-Bras-Long\",\"NOM_COM\":\"ANGLESQUEVILLE-LA-BRAS-LONG\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78257,49.77812]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28189,\"INSEE_Comm\":\"76119\",\"nomCom\":\"Bosc-B�renger\",\"NOM_COM\":\"BOSC-BERENGER\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25302,49.63487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28190,\"INSEE_Comm\":\"27454\",\"nomCom\":\"Perruel\",\"NOM_COM\":\"PERRUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36153,49.43223]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28191,\"INSEE_Comm\":\"80437\",\"nomCom\":\"Heucourt-Croquoison\",\"NOM_COM\":\"HEUCOURT-CROQUOISON\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88243,49.93014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28192,\"INSEE_Comm\":\"60098\",\"nomCom\":\"Bouvresse\",\"NOM_COM\":\"BOUVRESSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75712,49.65131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28193,\"INSEE_Comm\":\"60461\",\"nomCom\":\"Nivillers\",\"NOM_COM\":\"NIVILLERS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16733,49.45065]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28194,\"INSEE_Comm\":\"60627\",\"nomCom\":\"Tartigny\",\"NOM_COM\":\"TARTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36248,49.63472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28195,\"INSEE_Comm\":\"60463\",\"nomCom\":\"Nogent-sur-Oise\",\"NOM_COM\":\"NOGENT-SUR-OISE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6011\",\"nomCan\":\"Creil-Nogent-sur-Oise\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":356,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46493,49.27624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28196,\"INSEE_Comm\":\"80812\",\"nomCom\":\"Vraignes-en-Vermandois\",\"NOM_COM\":\"VRAIGNES-EN-VERMANDOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06729,49.88624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28197,\"INSEE_Comm\":\"60502\",\"nomCom\":\"Plessis-Patte-d'Oie\",\"NOM_COM\":\"LEPLESSIS-PATTE-D'OIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06585,49.68386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28214,\"INSEE_Comm\":\"76461\",\"nomCom\":\"Neufbosc\",\"NOM_COM\":\"NEUFBOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7649\",\"nomCan\":\"Saint-Sa�ns\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36133,49.64628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28228,\"INSEE_Comm\":\"27006\",\"nomCom\":\"Aizier\",\"NOM_COM\":\"AIZIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62608,49.43072]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28229,\"INSEE_Comm\":\"76742\",\"nomCom\":\"Villequier\",\"NOM_COM\":\"VILLEQUIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65753,49.51227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28230,\"INSEE_Comm\":\"76730\",\"nomCom\":\"Veauville-l�s-Quelles\",\"NOM_COM\":\"VEAUVILLE-LES-QUELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71126,49.73799]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28235,\"INSEE_Comm\":\"28268\",\"nomCom\":\"Morainville\",\"NOM_COM\":\"MORAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83371,48.37975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28241,\"INSEE_Comm\":\"27028\",\"nomCom\":\"Authou\",\"NOM_COM\":\"AUTHOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69676,49.22608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28242,\"INSEE_Comm\":\"27394\",\"nomCom\":\"Martot\",\"NOM_COM\":\"MARTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07107,49.27806]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28260,\"INSEE_Comm\":\"27354\",\"nomCom\":\"Iville\",\"NOM_COM\":\"IVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92631,49.17695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28261,\"INSEE_Comm\":\"27339\",\"nomCom\":\"Hondouville\",\"NOM_COM\":\"HONDOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11623,49.14487]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28262,\"INSEE_Comm\":\"27422\",\"nomCom\":\"Muids\",\"NOM_COM\":\"MUIDS\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28568,49.22658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28278,\"INSEE_Comm\":\"28102\",\"nomCom\":\"Cl�villiers\",\"NOM_COM\":\"CLEVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38437,48.55108]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28279,\"INSEE_Comm\":\"28203\",\"nomCom\":\"Landelles\",\"NOM_COM\":\"LANDELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19157,48.46266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28280,\"INSEE_Comm\":\"28030\",\"nomCom\":\"Beauche\",\"NOM_COM\":\"BEAUCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97996,48.67752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28289,\"INSEE_Comm\":\"80103\",\"nomCom\":\"Biarre\",\"NOM_COM\":\"BIARRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.88348,49.72194]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28292,\"INSEE_Comm\":\"60576\",\"nomCom\":\"Saint-Germain-la-Poterie\",\"NOM_COM\":\"SAINT-GERMAIN-LA-POTERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97021,49.44218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28299,\"INSEE_Comm\":\"95144\",\"nomCom\":\"Ch�tenay-en-France\",\"NOM_COM\":\"CHATENAY-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46275,49.06492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28300,\"INSEE_Comm\":\"14084\",\"nomCom\":\"Bonnemaison\",\"NOM_COM\":\"BONNEMAISON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58574,49.00361]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28301,\"INSEE_Comm\":\"28347\",\"nomCom\":\"Saint-Lubin-de-la-Haye\",\"NOM_COM\":\"SAINT-LUBIN-DE-LA-HAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56052,48.81837]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28303,\"INSEE_Comm\":\"80338\",\"nomCom\":\"Fouilloy\",\"NOM_COM\":\"FOUILLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50445,49.89058]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28305,\"INSEE_Comm\":\"80551\",\"nomCom\":\"Misery\",\"NOM_COM\":\"MISERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89005,49.84743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28306,\"INSEE_Comm\":\"80644\",\"nomCom\":\"Proyart\",\"NOM_COM\":\"PROYART\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70544,49.88875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28307,\"INSEE_Comm\":\"80682\",\"nomCom\":\"Rouvroy-en-Santerre\",\"NOM_COM\":\"ROUVROY-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.712,49.76809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28309,\"INSEE_Comm\":\"80451\",\"nomCom\":\"Irles\",\"NOM_COM\":\"IRLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76036,50.10272]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28310,\"INSEE_Comm\":\"80311\",\"nomCom\":\"Figni�res\",\"NOM_COM\":\"FIGNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58546,49.68035]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28314,\"INSEE_Comm\":\"80501\",\"nomCom\":\"Maison-Ponthieu\",\"NOM_COM\":\"MAISON-PONTHIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04267,50.20717]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28422,\"INSEE_Comm\":\"61043\",\"nomCom\":\"Berd'huis\",\"NOM_COM\":\"BERD'HUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73954,48.35001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28429,\"INSEE_Comm\":\"28175\",\"nomCom\":\"Gaudaine\",\"NOM_COM\":\"LAGAUDAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95154,48.29761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28440,\"INSEE_Comm\":\"14657\",\"nomCom\":\"Saint-Samson\",\"NOM_COM\":\"SAINT-SAMSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.15229,49.19044]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28466,\"INSEE_Comm\":\"27068\",\"nomCom\":\"Bois-Anzeray\",\"NOM_COM\":\"BOIS-ANZERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69175,48.92624]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28471,\"INSEE_Comm\":\"27695\",\"nomCom\":\"Villez-sur-le-Neubourg\",\"NOM_COM\":\"VILLEZ-SUR-LE-NEUBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85946,49.14719]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28477,\"INSEE_Comm\":\"61092\",\"nomCom\":\"Chandai\",\"NOM_COM\":\"CHANDAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74452,48.74192]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28479,\"INSEE_Comm\":\"76224\",\"nomCom\":\"�crainville\",\"NOM_COM\":\"ECRAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31312,49.64639]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28481,\"INSEE_Comm\":\"61074\",\"nomCom\":\"Carrouges\",\"NOM_COM\":\"CARROUGES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.16023,48.56912]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28484,\"INSEE_Comm\":\"14515\",\"nomCom\":\"Port-en-Bessin-Huppain\",\"NOM_COM\":\"PORT-EN-BESSIN-HUPPAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":123,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.77316,49.33898]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28491,\"INSEE_Comm\":\"14097\",\"nomCom\":\"Bretteville-le-Rabet\",\"NOM_COM\":\"BRETTEVILLE-LE-RABET\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.25831,49.02973]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28492,\"INSEE_Comm\":\"14216\",\"nomCom\":\"Damblainville\",\"NOM_COM\":\"DAMBLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.12688,48.92193]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28494,\"INSEE_Comm\":\"14368\",\"nomCom\":\"Lisores\",\"NOM_COM\":\"LISORES\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21208,48.95638]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28495,\"INSEE_Comm\":\"14058\",\"nomCom\":\"Bellou\",\"NOM_COM\":\"BELLOU\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22341,48.98772]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28496,\"INSEE_Comm\":\"14176\",\"nomCom\":\"Conteville\",\"NOM_COM\":\"CONTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24519,49.08909]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28514,\"INSEE_Comm\":\"14731\",\"nomCom\":\"Vauville\",\"NOM_COM\":\"VAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05854,49.309]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28524,\"INSEE_Comm\":\"78317\",\"nomCom\":\"Jambville\",\"NOM_COM\":\"JAMBVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84836,49.04848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28530,\"INSEE_Comm\":\"60513\",\"nomCom\":\"Pr�cy-sur-Oise\",\"NOM_COM\":\"PRECY-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":110,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36229,49.20325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28532,\"INSEE_Comm\":\"60224\",\"nomCom\":\"�tavigny\",\"NOM_COM\":\"ETAVIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98017,49.12766]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28563,\"INSEE_Comm\":\"14165\",\"nomCom\":\"Colleville-sur-Mer\",\"NOM_COM\":\"COLLEVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.84844,49.35031]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28564,\"INSEE_Comm\":\"76252\",\"nomCom\":\"�talondes\",\"NOM_COM\":\"ETALONDES\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38966,50.03271]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28565,\"INSEE_Comm\":\"27683\",\"nomCom\":\"V�zillon\",\"NOM_COM\":\"VEZILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39868,49.22179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28566,\"INSEE_Comm\":\"76163\",\"nomCom\":\"Catenay\",\"NOM_COM\":\"CATENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32657,49.51064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28567,\"INSEE_Comm\":\"80711\",\"nomCom\":\"Saint-Ouen\",\"NOM_COM\":\"SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13116,50.0343]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28568,\"INSEE_Comm\":\"76233\",\"nomCom\":\"Ellecourt\",\"NOM_COM\":\"ELLECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72746,49.80123]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28569,\"INSEE_Comm\":\"60692\",\"nomCom\":\"Villers-Vicomte\",\"NOM_COM\":\"VILLERS-VICOMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22866,49.64236]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28570,\"INSEE_Comm\":\"60355\",\"nomCom\":\"Laversines\",\"NOM_COM\":\"LAVERSINES\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20086,49.42992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28571,\"INSEE_Comm\":\"60387\",\"nomCom\":\"Marseille-en-Beauvaisis\",\"NOM_COM\":\"MARSEILLE-EN-BEAUVAISIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":67,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95765,49.57532]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28572,\"INSEE_Comm\":\"60311\",\"nomCom\":\"H�relle\",\"NOM_COM\":\"LAHERELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42201,49.59814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28573,\"INSEE_Comm\":\"60553\",\"nomCom\":\"Rouvillers\",\"NOM_COM\":\"ROUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62989,49.45576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28574,\"INSEE_Comm\":\"60325\",\"nomCom\":\"Jaux\",\"NOM_COM\":\"JAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6041\",\"nomCan\":\"Compi�gne-Sud-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":100,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.7668,49.39591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28575,\"INSEE_Comm\":\"60536\",\"nomCom\":\"Rhuis\",\"NOM_COM\":\"RHUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69788,49.30447]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28576,\"INSEE_Comm\":\"60151\",\"nomCom\":\"Choisy-au-Bac\",\"NOM_COM\":\"CHOISY-AU-BAC\",\"Statut\":\"Communesimple\",\"idCan\":\"6009\",\"nomCan\":\"Compi�gne-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89567,49.4421]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28577,\"INSEE_Comm\":\"60014\",\"nomCom\":\"Angivillers\",\"NOM_COM\":\"ANGIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49971,49.48895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28578,\"INSEE_Comm\":\"60663\",\"nomCom\":\"Velennes\",\"NOM_COM\":\"VELENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18841,49.47338]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28607,\"INSEE_Comm\":\"76596\",\"nomCom\":\"Saint-Laurent-de-Br�vedent\",\"NOM_COM\":\"SAINT-LAURENT-DE-BREVEDENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26928,49.5326]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28612,\"INSEE_Comm\":\"76089\",\"nomCom\":\"Betteville\",\"NOM_COM\":\"BETTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78876,49.54978]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28613,\"INSEE_Comm\":\"76741\",\"nomCom\":\"Villainville\",\"NOM_COM\":\"VILLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.2396,49.65967]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28621,\"INSEE_Comm\":\"28319\",\"nomCom\":\"Rouvray-Saint-Denis\",\"NOM_COM\":\"ROUVRAY-SAINT-DENIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94271,48.2771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28622,\"INSEE_Comm\":\"78557\",\"nomCom\":\"Saint-Hilarion\",\"NOM_COM\":\"SAINT-HILARION\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72861,48.6225]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28623,\"INSEE_Comm\":\"28208\",\"nomCom\":\"Levainville\",\"NOM_COM\":\"LEVAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74748,48.49261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28629,\"INSEE_Comm\":\"27326\",\"nomCom\":\"H�court\",\"NOM_COM\":\"HECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42874,48.98842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28630,\"INSEE_Comm\":\"27473\",\"nomCom\":\"Port-Mort\",\"NOM_COM\":\"PORT-MORT\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4105,49.17358]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28631,\"INSEE_Comm\":\"27571\",\"nomCom\":\"Saint-Martin-Saint-Firmin\",\"NOM_COM\":\"SAINT-MARTIN-SAINT-FIRMIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55968,49.29351]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28650,\"INSEE_Comm\":\"27163\",\"nomCom\":\"Colletot\",\"NOM_COM\":\"COLLETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62397,49.34995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28676,\"INSEE_Comm\":\"78190\",\"nomCom\":\"Croissy-sur-Seine\",\"NOM_COM\":\"CROISSY-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7804\",\"nomCan\":\"Chatou\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":109,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13541,48.87878]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28686,\"INSEE_Comm\":\"27083\",\"nomCom\":\"Bonneville-Aptot\",\"NOM_COM\":\"BONNEVILLE-APTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75153,49.25951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28688,\"INSEE_Comm\":\"60574\",\"nomCom\":\"Saint-F�lix\",\"NOM_COM\":\"SAINT-FELIX\",\"Statut\":\"Communesimple\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.284,49.35459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28692,\"INSEE_Comm\":\"95675\",\"nomCom\":\"Villeron\",\"NOM_COM\":\"VILLERON\",\"Statut\":\"Communesimple\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53451,49.06084]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28693,\"INSEE_Comm\":\"78517\",\"nomCom\":\"Rambouillet\",\"NOM_COM\":\"RAMBOUILLET\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":902,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82653,48.65391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28696,\"INSEE_Comm\":\"76349\",\"nomCom\":\"Hautot-sur-Mer\",\"NOM_COM\":\"HAUTOT-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04063,49.90245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28701,\"INSEE_Comm\":\"80758\",\"nomCom\":\"Thory\",\"NOM_COM\":\"THORY\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43112,49.71999]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28702,\"INSEE_Comm\":\"80324\",\"nomCom\":\"Fontaine-le-Sec\",\"NOM_COM\":\"FONTAINE-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80413,49.94362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28703,\"INSEE_Comm\":\"80518\",\"nomCom\":\"Martainneville\",\"NOM_COM\":\"MARTAINNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70653,49.99877]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28706,\"INSEE_Comm\":\"14222\",\"nomCom\":\"D�sert\",\"NOM_COM\":\"LEDESERT\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81043,48.89915]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28751,\"INSEE_Comm\":\"14128\",\"nomCom\":\"Campandr�-Valcongrain\",\"NOM_COM\":\"CAMPANDRE-VALCONGRAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58498,48.98129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28753,\"INSEE_Comm\":\"60439\",\"nomCom\":\"Mouy\",\"NOM_COM\":\"MOUY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6024\",\"nomCan\":\"Mouy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":125,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29975,49.31731]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28776,\"INSEE_Comm\":\"76424\",\"nomCom\":\"M�nonval\",\"NOM_COM\":\"MENONVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48093,49.76098]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28785,\"INSEE_Comm\":\"14341\",\"nomCom\":\"Ifs\",\"NOM_COM\":\"IFS\",\"Statut\":\"Communesimple\",\"idCan\":\"1446\",\"nomCan\":\"Caen10eCanton\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":549,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34247,49.14042]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28786,\"INSEE_Comm\":\"61175\",\"nomCom\":\"Forges\",\"NOM_COM\":\"FORGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.12637,48.49988]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28814,\"INSEE_Comm\":\"28404\",\"nomCom\":\"Vernouillet\",\"NOM_COM\":\"VERNOUILLET\",\"Statut\":\"Communesimple\",\"idCan\":\"2828\",\"nomCan\":\"Dreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":499,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3509,48.71979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28816,\"INSEE_Comm\":\"27027\",\"nomCom\":\"Authieux\",\"NOM_COM\":\"LESAUTHIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23439,48.89827]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28819,\"INSEE_Comm\":\"28421\",\"nomCom\":\"Voise\",\"NOM_COM\":\"VOISE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70861,48.40218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28839,\"INSEE_Comm\":\"27535\",\"nomCom\":\"Saint-�lier\",\"NOM_COM\":\"SAINT-ELIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96136,48.98373]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28840,\"INSEE_Comm\":\"95462\",\"nomCom\":\"Omerville\",\"NOM_COM\":\"OMERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7223,49.14242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28841,\"INSEE_Comm\":\"76458\",\"nomCom\":\"Muchedent\",\"NOM_COM\":\"MUCHEDENT\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18741,49.76637]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28846,\"INSEE_Comm\":\"28061\",\"nomCom\":\"Brou\",\"NOM_COM\":\"BROU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":136,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1574,48.21745]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28849,\"INSEE_Comm\":\"76590\",\"nomCom\":\"Saint-Jacques-d'Aliermont\",\"NOM_COM\":\"SAINT-JACQUES-D'ALIERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25192,49.84789]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28852,\"INSEE_Comm\":\"95427\",\"nomCom\":\"Montmagny\",\"NOM_COM\":\"MONTMAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"9509\",\"nomCan\":\"Enghien-les-Bains\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":473,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.34608,48.96992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28853,\"INSEE_Comm\":\"61366\",\"nomCom\":\"Saint-Aubin-de-Bonneval\",\"NOM_COM\":\"SAINT-AUBIN-DE-BONNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.37152,48.94911]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28856,\"INSEE_Comm\":\"14647\",\"nomCom\":\"Saint-Pierre-de-Mailloc\",\"NOM_COM\":\"SAINT-PIERRE-DE-MAILLOC\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30992,49.06999]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28858,\"INSEE_Comm\":\"61446\",\"nomCom\":\"Saint-Pierre-des-Loges\",\"NOM_COM\":\"SAINT-PIERRE-DES-LOGES\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46626,48.74316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28861,\"INSEE_Comm\":\"61056\",\"nomCom\":\"Bouillon\",\"NOM_COM\":\"LEBOUILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09856,48.55822]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28870,\"INSEE_Comm\":\"60142\",\"nomCom\":\"Chapelle-en-Serval\",\"NOM_COM\":\"LACHAPELLE-EN-SERVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":128,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52659,49.12129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28871,\"INSEE_Comm\":\"14605\",\"nomCom\":\"Saint-Laurent-sur-Mer\",\"NOM_COM\":\"SAINT-LAURENT-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.87603,49.35763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28876,\"INSEE_Comm\":\"61235\",\"nomCom\":\"Lor�\",\"NOM_COM\":\"LORE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58064,48.48343]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28877,\"INSEE_Comm\":\"61361\",\"nomCom\":\"Saint-Andr�-de-Briouze\",\"NOM_COM\":\"SAINT-ANDRE-DE-BRIOUZE\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32726,48.73388]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28878,\"INSEE_Comm\":\"61249\",\"nomCom\":\"Marcei\",\"NOM_COM\":\"MARCEI\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03706,48.66839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28879,\"INSEE_Comm\":\"61203\",\"nomCom\":\"H�loup\",\"NOM_COM\":\"HELOUP\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03524,48.39673]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28882,\"INSEE_Comm\":\"61227\",\"nomCom\":\"Lignou\",\"NOM_COM\":\"LIGNOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.34298,48.67367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28883,\"INSEE_Comm\":\"61511\",\"nomCom\":\"Vrigny\",\"NOM_COM\":\"VRIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.02609,48.66866]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28906,\"INSEE_Comm\":\"78615\",\"nomCom\":\"Thiverval-Grignon\",\"NOM_COM\":\"THIVERVAL-GRIGNON\",\"Statut\":\"Communesimple\",\"idCan\":\"7838\",\"nomCan\":\"Plaisir\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93387,48.84427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28931,\"INSEE_Comm\":\"14049\",\"nomCom\":\"Bazenville\",\"NOM_COM\":\"BAZENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.58456,49.30061]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28932,\"INSEE_Comm\":\"27577\",\"nomCom\":\"Sainte-Opportune-la-Mare\",\"NOM_COM\":\"SAINTE-OPPORTUNE-LA-MARE\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53364,49.42485]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28933,\"INSEE_Comm\":\"27052\",\"nomCom\":\"Bec-Hellouin\",\"NOM_COM\":\"LEBEC-HELLOUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72651,49.22492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28934,\"INSEE_Comm\":\"76519\",\"nomCom\":\"Rainfreville\",\"NOM_COM\":\"RAINFREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92381,49.79316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28935,\"INSEE_Comm\":\"76438\",\"nomCom\":\"Millebosc\",\"NOM_COM\":\"MILLEBOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49763,49.98106]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28936,\"INSEE_Comm\":\"76531\",\"nomCom\":\"Rocquefort\",\"NOM_COM\":\"ROCQUEFORT\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70318,49.66781]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28937,\"INSEE_Comm\":\"76230\",\"nomCom\":\"Elbeuf-sur-Andelle\",\"NOM_COM\":\"ELBEUF-SUR-ANDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38025,49.47776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28939,\"INSEE_Comm\":\"60212\",\"nomCom\":\"Ercuis\",\"NOM_COM\":\"ERCUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30849,49.23351]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28940,\"INSEE_Comm\":\"60140\",\"nomCom\":\"Chambors\",\"NOM_COM\":\"CHAMBORS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81073,49.26012]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28941,\"INSEE_Comm\":\"60359\",\"nomCom\":\"Lh�raule\",\"NOM_COM\":\"LHERAULE\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93093,49.48829]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28942,\"INSEE_Comm\":\"60697\",\"nomCom\":\"Vrocourt\",\"NOM_COM\":\"VROCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8904,49.53614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28943,\"INSEE_Comm\":\"76623\",\"nomCom\":\"Saint-Michel-d'Halescourt\",\"NOM_COM\":\"SAINT-MICHEL-D'HALESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65668,49.60921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28944,\"INSEE_Comm\":\"60629\",\"nomCom\":\"Th�rines\",\"NOM_COM\":\"THERINES\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89375,49.60343]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28945,\"INSEE_Comm\":\"60514\",\"nomCom\":\"Pr�villers\",\"NOM_COM\":\"PREVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99965,49.61743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28946,\"INSEE_Comm\":\"60630\",\"nomCom\":\"Thibivillers\",\"NOM_COM\":\"THIBIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90166,49.30981]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28947,\"INSEE_Comm\":\"80343\",\"nomCom\":\"Framicourt\",\"NOM_COM\":\"FRAMICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67721,49.95601]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28950,\"INSEE_Comm\":\"80475\",\"nomCom\":\"Li�ramont\",\"NOM_COM\":\"LIERAMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05179,49.99585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28965,\"INSEE_Comm\":\"27451\",\"nomCom\":\"Parville\",\"NOM_COM\":\"PARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09222,49.03189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28979,\"INSEE_Comm\":\"76335\",\"nomCom\":\"Gueutteville\",\"NOM_COM\":\"GUEUTTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00473,49.64995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28982,\"INSEE_Comm\":\"76533\",\"nomCom\":\"Rogerville\",\"NOM_COM\":\"ROGERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25945,49.48576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":28999,\"INSEE_Comm\":\"27077\",\"nomCom\":\"Boissey-le-Ch�tel\",\"NOM_COM\":\"BOISSEY-LE-CHATEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78144,49.27181]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29001,\"INSEE_Comm\":\"27385\",\"nomCom\":\"Manneville-sur-Risle\",\"NOM_COM\":\"MANNEVILLE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":204,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54595,49.36108]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29004,\"INSEE_Comm\":\"27633\",\"nomCom\":\"Thilliers-en-Vexin\",\"NOM_COM\":\"LESTHILLIERS-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60505,49.23646]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29018,\"INSEE_Comm\":\"78123\",\"nomCom\":\"Carri�res-sous-Poissy\",\"NOM_COM\":\"CARRIERES-SOUS-POISSY\",\"Statut\":\"Communesimple\",\"idCan\":\"7816\",\"nomCan\":\"Poissy-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":939,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02913,48.94556]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29019,\"INSEE_Comm\":\"28367\",\"nomCom\":\"Santilly\",\"NOM_COM\":\"SANTILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87958,48.14869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29020,\"INSEE_Comm\":\"28388\",\"nomCom\":\"Thivars\",\"NOM_COM\":\"THIVARS\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":61,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44889,48.38246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29021,\"INSEE_Comm\":\"28418\",\"nomCom\":\"Villiers-Saint-Orien\",\"NOM_COM\":\"VILLIERS-SAINT-ORIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49461,48.14263]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29027,\"INSEE_Comm\":\"60041\",\"nomCom\":\"Bailleul-sur-Th�rain\",\"NOM_COM\":\"BAILLEUL-SUR-THERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":101,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23034,49.38516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29039,\"INSEE_Comm\":\"95316\",\"nomCom\":\"Jagny-sous-Bois\",\"NOM_COM\":\"JAGNY-SOUS-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.444,49.08143]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29048,\"INSEE_Comm\":\"80616\",\"nomCom\":\"Pargny\",\"NOM_COM\":\"PARGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94771,49.80864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29050,\"INSEE_Comm\":\"80532\",\"nomCom\":\"M�ricourt-sur-Somme\",\"NOM_COM\":\"MERICOURT-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68162,49.90591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29051,\"INSEE_Comm\":\"80545\",\"nomCom\":\"M�zi�res-en-Santerre\",\"NOM_COM\":\"MEZIERES-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5515,49.7808]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29052,\"INSEE_Comm\":\"80129\",\"nomCom\":\"Bouzincourt\",\"NOM_COM\":\"BOUZINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61186,50.0234]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29055,\"INSEE_Comm\":\"80233\",\"nomCom\":\"Dancourt-Popincourt\",\"NOM_COM\":\"DANCOURT-POPINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73132,49.66563]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29058,\"INSEE_Comm\":\"80112\",\"nomCom\":\"Bonnay\",\"NOM_COM\":\"BONNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50691,49.94291]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29069,\"INSEE_Comm\":\"14415\",\"nomCom\":\"Mesnil-Benoist\",\"NOM_COM\":\"LEMESNIL-BENOIST\",\"Statut\":\"Communesimple\",\"idCan\":\"1430\",\"nomCan\":\"Saint-Sever-Calvados\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.98143,48.86809]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29075,\"INSEE_Comm\":\"27609\",\"nomCom\":\"Saint-Victor-d'�pine\",\"NOM_COM\":\"SAINT-VICTOR-D'EPINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5989,49.21179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29080,\"INSEE_Comm\":\"14718\",\"nomCom\":\"Truttemer-le-Petit\",\"NOM_COM\":\"TRUTTEMER-LE-PETIT\",\"Statut\":\"Communesimple\",\"idCan\":\"1438\",\"nomCan\":\"Vire\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.80979,48.76934]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29135,\"INSEE_Comm\":\"28292\",\"nomCom\":\"Ouerre\",\"NOM_COM\":\"OUERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48886,48.70806]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29139,\"INSEE_Comm\":\"28308\",\"nomCom\":\"Prudemanche\",\"NOM_COM\":\"PRUDEMANCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13417,48.7214]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29141,\"INSEE_Comm\":\"28336\",\"nomCom\":\"Saint-�man\",\"NOM_COM\":\"SAINT-EMAN\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1998,48.32407]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29147,\"INSEE_Comm\":\"28141\",\"nomCom\":\"Ermenonville-la-Grande\",\"NOM_COM\":\"ERMENONVILLE-LA-GRANDE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38094,48.33569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29158,\"INSEE_Comm\":\"61087\",\"nomCom\":\"Champeaux-sur-Sarthe\",\"NOM_COM\":\"CHAMPEAUX-SUR-SARTHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43938,48.57702]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29167,\"INSEE_Comm\":\"27698\",\"nomCom\":\"Vitot\",\"NOM_COM\":\"VITOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88719,49.1678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29168,\"INSEE_Comm\":\"27144\",\"nomCom\":\"Champigny-la-Futelaye\",\"NOM_COM\":\"CHAMPIGNY-LA-FUTELAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30068,48.86962]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29172,\"INSEE_Comm\":\"14220\",\"nomCom\":\"Deauville\",\"NOM_COM\":\"DEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":350,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07447,49.35438]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29178,\"INSEE_Comm\":\"28142\",\"nomCom\":\"Ermenonville-la-Petite\",\"NOM_COM\":\"ERMENONVILLE-LA-PETITE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34785,48.29209]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29179,\"INSEE_Comm\":\"28287\",\"nomCom\":\"Org�res-en-Beauce\",\"NOM_COM\":\"ORGERES-EN-BEAUCE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68433,48.13856]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29190,\"INSEE_Comm\":\"27267\",\"nomCom\":\"Freneuse-sur-Risle\",\"NOM_COM\":\"FRENEUSE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6715,49.24626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29205,\"INSEE_Comm\":\"28085\",\"nomCom\":\"Chartres\",\"NOM_COM\":\"CHARTRES\",\"Statut\":\"Pr?fecture\",\"idCan\":\"2899\",\"nomCan\":\"Chartres\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1842,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50571,48.44715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29208,\"INSEE_Comm\":\"28069\",\"nomCom\":\"Champagne\",\"NOM_COM\":\"CHAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55895,48.76458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29211,\"INSEE_Comm\":\"27530\",\"nomCom\":\"Saint-Denis-d'Augerons\",\"NOM_COM\":\"SAINT-DENIS-D'AUGERONS\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47148,48.9149]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29223,\"INSEE_Comm\":\"14004\",\"nomCom\":\"Aignerville\",\"NOM_COM\":\"AIGNERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.91863,49.32595]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29225,\"INSEE_Comm\":\"78265\",\"nomCom\":\"Garanci�res\",\"NOM_COM\":\"GARANCIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":36,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75832,48.8236]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29256,\"INSEE_Comm\":\"28184\",\"nomCom\":\"Gouillons\",\"NOM_COM\":\"GOUILLONS\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84394,48.34212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29257,\"INSEE_Comm\":\"60282\",\"nomCom\":\"Gouvieux\",\"NOM_COM\":\"GOUVIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6036\",\"nomCan\":\"Chantilly\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":83,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42047,49.18966]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29258,\"INSEE_Comm\":\"60190\",\"nomCom\":\"Cuvergnon\",\"NOM_COM\":\"CUVERGNON\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.99808,49.17401]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29270,\"INSEE_Comm\":\"14666\",\"nomCom\":\"Sannerville\",\"NOM_COM\":\"SANNERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":94,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22282,49.18395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29283,\"INSEE_Comm\":\"14550\",\"nomCom\":\"Rumesnil\",\"NOM_COM\":\"RUMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02208,49.18621]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29284,\"INSEE_Comm\":\"14063\",\"nomCom\":\"Bernesq\",\"NOM_COM\":\"BERNESQ\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.93144,49.27377]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29285,\"INSEE_Comm\":\"14367\",\"nomCom\":\"Lison\",\"NOM_COM\":\"LISON\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.05217,49.24137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29286,\"INSEE_Comm\":\"14023\",\"nomCom\":\"Asni�res-en-Bessin\",\"NOM_COM\":\"ASNIERES-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.93823,49.36005]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29287,\"INSEE_Comm\":\"14645\",\"nomCom\":\"Saint-Pierre-Azif\",\"NOM_COM\":\"SAINT-PIERRE-AZIF\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03726,49.29277]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29288,\"INSEE_Comm\":\"76097\",\"nomCom\":\"Biville-la-Rivi�re\",\"NOM_COM\":\"BIVILLE-LA-RIVIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92046,49.77572]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29289,\"INSEE_Comm\":\"76500\",\"nomCom\":\"Pierrecourt\",\"NOM_COM\":\"PIERRECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63853,49.8883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29290,\"INSEE_Comm\":\"76561\",\"nomCom\":\"Saint-Aubin-l�s-Elbeuf\",\"NOM_COM\":\"SAINT-AUBIN-LES-ELBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7617\",\"nomCan\":\"Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":331,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.01848,49.30307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29291,\"INSEE_Comm\":\"76527\",\"nomCom\":\"Richemont\",\"NOM_COM\":\"RICHEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64419,49.81028]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29292,\"INSEE_Comm\":\"80247\",\"nomCom\":\"Dompierre-Becquincourt\",\"NOM_COM\":\"DOMPIERRE-BECQUINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80676,49.91092]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29293,\"INSEE_Comm\":\"60230\",\"nomCom\":\"Fay-Saint-Quentin\",\"NOM_COM\":\"LEFAY-SAINT-QUENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25128,49.44903]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29294,\"INSEE_Comm\":\"60165\",\"nomCom\":\"Coudray-sur-Thelle\",\"NOM_COM\":\"LECOUDRAY-SUR-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12444,49.30929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29295,\"INSEE_Comm\":\"60608\",\"nomCom\":\"Saulchoy\",\"NOM_COM\":\"LESAULCHOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13635,49.63075]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29296,\"INSEE_Comm\":\"80761\",\"nomCom\":\"Tilloy-l�s-Conty\",\"NOM_COM\":\"TILLOY-LES-CONTY\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17792,49.75114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29297,\"INSEE_Comm\":\"60191\",\"nomCom\":\"Cuvilly\",\"NOM_COM\":\"CUVILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70069,49.54895]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29298,\"INSEE_Comm\":\"60045\",\"nomCom\":\"Barbery\",\"NOM_COM\":\"BARBERY\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6736,49.22257]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29299,\"INSEE_Comm\":\"60274\",\"nomCom\":\"Glaignes\",\"NOM_COM\":\"GLAIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8402,49.27317]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29300,\"INSEE_Comm\":\"60129\",\"nomCom\":\"Carlepont\",\"NOM_COM\":\"CARLEPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02235,49.51915]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29301,\"INSEE_Comm\":\"60701\",\"nomCom\":\"Wavignies\",\"NOM_COM\":\"WAVIGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35951,49.54668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29315,\"INSEE_Comm\":\"80810\",\"nomCom\":\"Vitz-sur-Authie\",\"NOM_COM\":\"VITZ-SUR-AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05532,50.24673]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29322,\"INSEE_Comm\":\"76381\",\"nomCom\":\"Landes-Vieilles-et-Neuves\",\"NOM_COM\":\"LANDES-VIEILLES-ET-NEUVES\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63238,49.78658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29339,\"INSEE_Comm\":\"76700\",\"nomCom\":\"T�tes\",\"NOM_COM\":\"TOTES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":111,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04262,49.68353]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29340,\"INSEE_Comm\":\"76181\",\"nomCom\":\"Cl�ville\",\"NOM_COM\":\"CLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61595,49.62245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29341,\"INSEE_Comm\":\"76732\",\"nomCom\":\"Butot-V�nesville\",\"NOM_COM\":\"BUTOT-VENESVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58596,49.81592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29342,\"INSEE_Comm\":\"76488\",\"nomCom\":\"Ouainville\",\"NOM_COM\":\"OUAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58845,49.78543]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29344,\"INSEE_Comm\":\"28074\",\"nomCom\":\"Chapelle-d'Aunainville\",\"NOM_COM\":\"LACHAPELLE-D'AUNAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79761,48.41582]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29345,\"INSEE_Comm\":\"28285\",\"nomCom\":\"Oinville-sous-Auneau\",\"NOM_COM\":\"OINVILLE-SOUS-AUNEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71422,48.46976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29360,\"INSEE_Comm\":\"27392\",\"nomCom\":\"Martagny\",\"NOM_COM\":\"MARTAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65772,49.39553]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29361,\"INSEE_Comm\":\"27682\",\"nomCom\":\"Vesly\",\"NOM_COM\":\"VESLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64158,49.24261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29362,\"INSEE_Comm\":\"27474\",\"nomCom\":\"Poses\",\"NOM_COM\":\"POSES\",\"Statut\":\"Communesimple\",\"idCan\":\"2743\",\"nomCan\":\"Val-de-Reuil\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24072,49.29957]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29386,\"INSEE_Comm\":\"61041\",\"nomCom\":\"Bellou-le-Trichard\",\"NOM_COM\":\"BELLOU-LE-TRICHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55322,48.2641]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29411,\"INSEE_Comm\":\"76249\",\"nomCom\":\"�taimpuis\",\"NOM_COM\":\"ETAIMPUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":71,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14395,49.63987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29430,\"INSEE_Comm\":\"61353\",\"nomCom\":\"Ronfeugerai\",\"NOM_COM\":\"RONFEUGERAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47893,48.77472]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29453,\"INSEE_Comm\":\"76346\",\"nomCom\":\"Hautot-l'Auvray\",\"NOM_COM\":\"HAUTOT-L'AUVRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75529,49.7653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29494,\"INSEE_Comm\":\"61243\",\"nomCom\":\"Magny-le-D�sert\",\"NOM_COM\":\"MAGNY-LE-DESERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":81,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32314,48.57056]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29530,\"INSEE_Comm\":\"61182\",\"nomCom\":\"Gandelain\",\"NOM_COM\":\"GANDELAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08641,48.47139]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29569,\"INSEE_Comm\":\"14274\",\"nomCom\":\"Fontaine-�toupefour\",\"NOM_COM\":\"FONTAINE-ETOUPEFOUR\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":128,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.45424,49.138]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29572,\"INSEE_Comm\":\"28280\",\"nomCom\":\"Nogent-le-Rotrou\",\"NOM_COM\":\"NOGENT-LE-ROTROU\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":177,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80405,48.31763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29573,\"INSEE_Comm\":\"14643\",\"nomCom\":\"Saint-Paul-du-Vernay\",\"NOM_COM\":\"SAINT-PAUL-DU-VERNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.75668,49.19679]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29604,\"INSEE_Comm\":\"61222\",\"nomCom\":\"Landisacq\",\"NOM_COM\":\"LANDISACQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.65863,48.75285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29626,\"INSEE_Comm\":\"61484\",\"nomCom\":\"Theil\",\"NOM_COM\":\"LETHEIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65092,48.26769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29634,\"INSEE_Comm\":\"60141\",\"nomCom\":\"Chantilly\",\"NOM_COM\":\"CHANTILLY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6036\",\"nomCan\":\"Chantilly\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":123,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48104,49.17626]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29640,\"INSEE_Comm\":\"27320\",\"nomCom\":\"Haye-du-Theil\",\"NOM_COM\":\"LAHAYE-DU-THEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87533,49.23763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29641,\"INSEE_Comm\":\"76523\",\"nomCom\":\"R�tonval\",\"NOM_COM\":\"RETONVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.59427,49.81237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29646,\"INSEE_Comm\":\"61263\",\"nomCom\":\"M�nil-Erreux\",\"NOM_COM\":\"MENIL-ERREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18375,48.50939]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29663,\"INSEE_Comm\":\"28339\",\"nomCom\":\"Saint-Germain-le-Gaillard\",\"NOM_COM\":\"SAINT-GERMAIN-LE-GAILLARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25462,48.4242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29672,\"INSEE_Comm\":\"78391\",\"nomCom\":\"M�ricourt\",\"NOM_COM\":\"MERICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62394,49.03704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29677,\"INSEE_Comm\":\"78443\",\"nomCom\":\"Neauphle-le-Vieux\",\"NOM_COM\":\"NEAUPHLE-LE-VIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85898,48.81518]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29690,\"INSEE_Comm\":\"60492\",\"nomCom\":\"Pimprez\",\"NOM_COM\":\"PIMPREZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95165,49.51239]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29707,\"INSEE_Comm\":\"61379\",\"nomCom\":\"Saint-Cyr-la-Rosi�re\",\"NOM_COM\":\"SAINT-CYR-LA-ROSIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6424,48.32059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29722,\"INSEE_Comm\":\"61122\",\"nomCom\":\"Coulmer\",\"NOM_COM\":\"COULMER\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30324,48.76669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29728,\"INSEE_Comm\":\"14706\",\"nomCom\":\"Tourville-en-Auge\",\"NOM_COM\":\"TOURVILLE-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19513,49.31968]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29729,\"INSEE_Comm\":\"27587\",\"nomCom\":\"Saint-Philbert-sur-Risle\",\"NOM_COM\":\"SAINT-PHILBERT-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64739,49.27738]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29730,\"INSEE_Comm\":\"60322\",\"nomCom\":\"Jam�ricourt\",\"NOM_COM\":\"JAMERICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87345,49.30221]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29731,\"INSEE_Comm\":\"76345\",\"nomCom\":\"Haussez\",\"NOM_COM\":\"HAUSSEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67912,49.58744]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29746,\"INSEE_Comm\":\"28019\",\"nomCom\":\"Baigneaux\",\"NOM_COM\":\"BAIGNEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82055,48.12833]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29757,\"INSEE_Comm\":\"80060\",\"nomCom\":\"B�alcourt\",\"NOM_COM\":\"BEALCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18249,50.19659]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29760,\"INSEE_Comm\":\"78620\",\"nomCom\":\"Toussus-le-Noble\",\"NOM_COM\":\"TOUSSUS-LE-NOBLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7829\",\"nomCan\":\"Versailles-Sud\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":190,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11791,48.74663]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29762,\"INSEE_Comm\":\"14650\",\"nomCom\":\"Saint-Pierre-du-Fresne\",\"NOM_COM\":\"SAINT-PIERRE-DU-FRESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76582,49.03413]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29764,\"INSEE_Comm\":\"80824\",\"nomCom\":\"Wiencourt-l'�quip�e\",\"NOM_COM\":\"WIENCOURT-L'EQUIPEE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60476,49.84006]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29765,\"INSEE_Comm\":\"80751\",\"nomCom\":\"Thennes\",\"NOM_COM\":\"THENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47937,49.80344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29766,\"INSEE_Comm\":\"80216\",\"nomCom\":\"Courcelette\",\"NOM_COM\":\"COURCELETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74385,50.05967]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29767,\"INSEE_Comm\":\"80389\",\"nomCom\":\"Gr�court\",\"NOM_COM\":\"GRECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98685,49.71704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29768,\"INSEE_Comm\":\"80466\",\"nomCom\":\"Lanches-Saint-Hilaire\",\"NOM_COM\":\"LANCHES-SAINT-HILAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14571,50.1003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29771,\"INSEE_Comm\":\"80675\",\"nomCom\":\"Rogy\",\"NOM_COM\":\"ROGY\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20476,49.71296]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29773,\"INSEE_Comm\":\"80248\",\"nomCom\":\"Dompierre-sur-Authie\",\"NOM_COM\":\"DOMPIERRE-SUR-AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92083,50.29514]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29774,\"INSEE_Comm\":\"78650\",\"nomCom\":\"V�sinet\",\"NOM_COM\":\"LEVESINET\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7830\",\"nomCan\":\"V�sinet\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":198,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13039,48.89386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29796,\"INSEE_Comm\":\"27561\",\"nomCom\":\"Saint-Maclou\",\"NOM_COM\":\"SAINT-MACLOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41362,49.36199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29818,\"INSEE_Comm\":\"14554\",\"nomCom\":\"Saint-Aignan-de-Cramesnil\",\"NOM_COM\":\"SAINT-AIGNAN-DE-CRAMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28589,49.08154]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29827,\"INSEE_Comm\":\"76658\",\"nomCom\":\"Saint-Vincent-Cramesnil\",\"NOM_COM\":\"SAINT-VINCENT-CRAMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35985,49.50894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29828,\"INSEE_Comm\":\"60245\",\"nomCom\":\"Formerie\",\"NOM_COM\":\"FORMERIE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":81,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72801,49.6493]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29855,\"INSEE_Comm\":\"28040\",\"nomCom\":\"Billancelles\",\"NOM_COM\":\"BILLANCELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21327,48.49386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29868,\"INSEE_Comm\":\"95046\",\"nomCom\":\"Banthelu\",\"NOM_COM\":\"BANTHELU\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81516,49.12598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29871,\"INSEE_Comm\":\"95282\",\"nomCom\":\"Gouzangrez\",\"NOM_COM\":\"GOUZANGREZ\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90837,49.11386]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29887,\"INSEE_Comm\":\"95625\",\"nomCom\":\"Us\",\"NOM_COM\":\"US\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95767,49.10479]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29890,\"INSEE_Comm\":\"27414\",\"nomCom\":\"Montreuil-l'Argill�\",\"NOM_COM\":\"MONTREUIL-L'ARGILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46848,48.93965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29908,\"INSEE_Comm\":\"27020\",\"nomCom\":\"Arni�res-sur-Iton\",\"NOM_COM\":\"ARNIERES-SUR-ITON\",\"Statut\":\"Communesimple\",\"idCan\":\"2738\",\"nomCan\":\"�vreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10364,48.98958]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29909,\"INSEE_Comm\":\"27464\",\"nomCom\":\"Plessis-Grohan\",\"NOM_COM\":\"LEPLESSIS-GROHAN\",\"Statut\":\"Communesimple\",\"idCan\":\"2717\",\"nomCan\":\"�vreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13324,48.94433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29911,\"INSEE_Comm\":\"76068\",\"nomCom\":\"Bec-de-Mortagne\",\"NOM_COM\":\"BEC-DE-MORTAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.449,49.70462]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29913,\"INSEE_Comm\":\"80070\",\"nomCom\":\"Beauquesne\",\"NOM_COM\":\"BEAUQUESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":65,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37614,50.08119]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29921,\"INSEE_Comm\":\"27234\",\"nomCom\":\"Fauville\",\"NOM_COM\":\"FAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19907,49.02427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29924,\"INSEE_Comm\":\"14148\",\"nomCom\":\"Cerqueux\",\"NOM_COM\":\"CERQUEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34767,48.99701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29933,\"INSEE_Comm\":\"27693\",\"nomCom\":\"Sylvains-les-Moulins\",\"NOM_COM\":\"SYLVAINS-LES-MOULINS\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.1027,48.90282]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29939,\"INSEE_Comm\":\"76551\",\"nomCom\":\"Sainneville\",\"NOM_COM\":\"SAINNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29295,49.55246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29946,\"INSEE_Comm\":\"60309\",\"nomCom\":\"H�nonville\",\"NOM_COM\":\"HENONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05643,49.21019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29947,\"INSEE_Comm\":\"95424\",\"nomCom\":\"Montigny-l�s-Cormeilles\",\"NOM_COM\":\"MONTIGNY-LES-CORMEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"9505\",\"nomCan\":\"Cormeilles-en-Parisis\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":723,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19352,48.9938]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29948,\"INSEE_Comm\":\"14126\",\"nomCom\":\"Cambremer\",\"NOM_COM\":\"CAMBREMER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05411,49.14649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29949,\"INSEE_Comm\":\"14268\",\"nomCom\":\"Fierville-Bray\",\"NOM_COM\":\"FIERVILLE-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17952,49.0647]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29950,\"INSEE_Comm\":\"14546\",\"nomCom\":\"Rouvres\",\"NOM_COM\":\"ROUVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.1867,49.00365]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29952,\"INSEE_Comm\":\"14750\",\"nomCom\":\"Vieux-Pont-en-Auge\",\"NOM_COM\":\"VIEUX-PONT-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05309,49.04242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29953,\"INSEE_Comm\":\"61023\",\"nomCom\":\"Bailleul\",\"NOM_COM\":\"BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0236,48.81086]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29955,\"INSEE_Comm\":\"95309\",\"nomCom\":\"Hodent\",\"NOM_COM\":\"HODENT\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76243,49.14217]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":29991,\"INSEE_Comm\":\"76076\",\"nomCom\":\"B�narville\",\"NOM_COM\":\"BENARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48447,49.67247]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30013,\"INSEE_Comm\":\"14514\",\"nomCom\":\"Pont-l'�v�que\",\"NOM_COM\":\"PONT-L'EVEQUE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":356,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.18767,49.28056]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30014,\"INSEE_Comm\":\"14728\",\"nomCom\":\"Vaucelles\",\"NOM_COM\":\"VAUCELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":61,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73611,49.28425]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30015,\"INSEE_Comm\":\"27126\",\"nomCom\":\"Campigny\",\"NOM_COM\":\"CAMPIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":95,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56157,49.31782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30016,\"INSEE_Comm\":\"76641\",\"nomCom\":\"Saint-Pierre-le-Vieux\",\"NOM_COM\":\"SAINT-PIERRE-LE-VIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88517,49.84882]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30017,\"INSEE_Comm\":\"76442\",\"nomCom\":\"Monchy-sur-Eu\",\"NOM_COM\":\"MONCHY-SUR-EU\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":58,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45921,49.99268]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30018,\"INSEE_Comm\":\"76369\",\"nomCom\":\"Houssaye-B�ranger\",\"NOM_COM\":\"LAHOUSSAYE-BERANGER\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08375,49.62953]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30019,\"INSEE_Comm\":\"76475\",\"nomCom\":\"Franqueville-Saint-Pierre\",\"NOM_COM\":\"FRANQUEVILLE-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":425,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18264,49.40384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30020,\"INSEE_Comm\":\"76322\",\"nomCom\":\"Grand-Quevilly\",\"NOM_COM\":\"LEGRAND-QUEVILLY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7694\",\"nomCan\":\"Grand-Quevilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":271,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03996,49.40951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30021,\"INSEE_Comm\":\"76535\",\"nomCom\":\"Roncherolles-en-Bray\",\"NOM_COM\":\"RONCHEROLLES-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48812,49.61497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30022,\"INSEE_Comm\":\"80229\",\"nomCom\":\"Crouy-Saint-Pierre\",\"NOM_COM\":\"CROUY-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09313,49.96]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30023,\"INSEE_Comm\":\"60297\",\"nomCom\":\"Hamel\",\"NOM_COM\":\"LEHAMEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01203,49.64533]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30024,\"INSEE_Comm\":\"60450\",\"nomCom\":\"Neuilly-en-Thelle\",\"NOM_COM\":\"NEUILLY-EN-THELLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":107,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27979,49.22861]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30025,\"INSEE_Comm\":\"60040\",\"nomCom\":\"Bailleul-le-Soc\",\"NOM_COM\":\"BAILLEUL-LE-SOC\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58377,49.42062]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30026,\"INSEE_Comm\":\"60379\",\"nomCom\":\"Mareuil-la-Motte\",\"NOM_COM\":\"MAREUIL-LA-MOTTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79727,49.54924]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30027,\"INSEE_Comm\":\"60186\",\"nomCom\":\"Cuigni�res\",\"NOM_COM\":\"CUIGNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47172,49.44814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30028,\"INSEE_Comm\":\"80488\",\"nomCom\":\"Longpr�-les-Corps-Saints\",\"NOM_COM\":\"LONGPRE-LES-CORPS-SAINTS\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":101,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98146,50.01227]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30035,\"INSEE_Comm\":\"80762\",\"nomCom\":\"Tincourt-Boucly\",\"NOM_COM\":\"TINCOURT-BOUCLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04921,49.93851]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30047,\"INSEE_Comm\":\"80477\",\"nomCom\":\"Ligescourt\",\"NOM_COM\":\"LIGESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87137,50.29033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30065,\"INSEE_Comm\":\"76187\",\"nomCom\":\"Contremoulins\",\"NOM_COM\":\"CONTREMOULINS\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43778,49.7246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30073,\"INSEE_Comm\":\"78416\",\"nomCom\":\"Montalet-le-Bois\",\"NOM_COM\":\"MONTALET-LE-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82996,49.04899]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30074,\"INSEE_Comm\":\"28013\",\"nomCom\":\"Aunay-sous-Auneau\",\"NOM_COM\":\"AUNAY-SOUS-AUNEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81371,48.44286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30081,\"INSEE_Comm\":\"27689\",\"nomCom\":\"Villegats\",\"NOM_COM\":\"VILLEGATS\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46396,48.99845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30082,\"INSEE_Comm\":\"27188\",\"nomCom\":\"Criquebeuf-sur-Seine\",\"NOM_COM\":\"CRIQUEBEUF-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":83,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10157,49.29311]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30083,\"INSEE_Comm\":\"27261\",\"nomCom\":\"Fouqueville\",\"NOM_COM\":\"FOUQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96347,49.22211]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30106,\"INSEE_Comm\":\"78608\",\"nomCom\":\"Tertre-Saint-Denis\",\"NOM_COM\":\"LETERTRE-SAINT-DENIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60841,48.94254]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30107,\"INSEE_Comm\":\"28076\",\"nomCom\":\"Chapelle-Forainvilliers\",\"NOM_COM\":\"LACHAPELLE-FORAINVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49117,48.72827]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30108,\"INSEE_Comm\":\"28070\",\"nomCom\":\"Champhol\",\"NOM_COM\":\"CHAMPHOL\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":224,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51057,48.46698]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30109,\"INSEE_Comm\":\"28055\",\"nomCom\":\"Boullay-Thierry\",\"NOM_COM\":\"LEBOULLAY-THIERRY\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43287,48.63459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30118,\"INSEE_Comm\":\"80380\",\"nomCom\":\"Gorenflos\",\"NOM_COM\":\"GORENFLOS\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05671,50.09156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30119,\"INSEE_Comm\":\"95678\",\"nomCom\":\"Villiers-Adam\",\"NOM_COM\":\"VILLIERS-ADAM\",\"Statut\":\"Communesimple\",\"idCan\":\"9514\",\"nomCan\":\"Isle-Adam\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23951,49.07029]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30120,\"INSEE_Comm\":\"78655\",\"nomCom\":\"Vieille-�glise-en-Yvelines\",\"NOM_COM\":\"VIEILLE-EGLISE-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8748,48.66974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30121,\"INSEE_Comm\":\"78455\",\"nomCom\":\"Noisy-le-Roi\",\"NOM_COM\":\"NOISY-LE-ROI\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":94,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05479,48.84651]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30126,\"INSEE_Comm\":\"80288\",\"nomCom\":\"Estr�es-Deni�court\",\"NOM_COM\":\"ESTREES-DENIECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82257,49.87185]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30127,\"INSEE_Comm\":\"80421\",\"nomCom\":\"Hattencourt\",\"NOM_COM\":\"HATTENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.79281,49.76914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30129,\"INSEE_Comm\":\"80470\",\"nomCom\":\"L�alvillers\",\"NOM_COM\":\"LEALVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50798,50.0685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30130,\"INSEE_Comm\":\"80142\",\"nomCom\":\"Briquemesnil-Floxicourt\",\"NOM_COM\":\"BRIQUEMESNIL-FLOXICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08049,49.88784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30131,\"INSEE_Comm\":\"80594\",\"nomCom\":\"Neuville-l�s-Loeuilly\",\"NOM_COM\":\"NEUVILLE-LES-LOEUILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17537,49.7933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30133,\"INSEE_Comm\":\"60341\",\"nomCom\":\"Lagny-le-Sec\",\"NOM_COM\":\"LAGNY-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":91,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74888,49.07806]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30136,\"INSEE_Comm\":\"80495\",\"nomCom\":\"Lucheux\",\"NOM_COM\":\"LUCHEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41955,50.20077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30206,\"INSEE_Comm\":\"61373\",\"nomCom\":\"Sainte-C�ronne-l�s-Mortagne\",\"NOM_COM\":\"SAINTE-CERONNE-LES-MORTAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52556,48.58643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30221,\"INSEE_Comm\":\"27678\",\"nomCom\":\"Ventes\",\"NOM_COM\":\"LESVENTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2717\",\"nomCan\":\"�vreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06596,48.95585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30230,\"INSEE_Comm\":\"28084\",\"nomCom\":\"Chartainvilliers\",\"NOM_COM\":\"CHARTAINVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54565,48.5431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30234,\"INSEE_Comm\":\"14487\",\"nomCom\":\"Ouilly-le-Vicomte\",\"NOM_COM\":\"OUILLY-LE-VICOMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.21527,49.17775]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30244,\"INSEE_Comm\":\"27009\",\"nomCom\":\"Ambenay\",\"NOM_COM\":\"AMBENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73973,48.84022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30255,\"INSEE_Comm\":\"28396\",\"nomCom\":\"Trizay-l�s-Bonneval\",\"NOM_COM\":\"TRIZAY-LES-BONNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33238,48.19979]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30265,\"INSEE_Comm\":\"27615\",\"nomCom\":\"Sassey\",\"NOM_COM\":\"SASSEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2228,49.05022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30266,\"INSEE_Comm\":\"27280\",\"nomCom\":\"Gauciel\",\"NOM_COM\":\"GAUCIEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24708,49.03562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30269,\"INSEE_Comm\":\"14130\",\"nomCom\":\"Campigny\",\"NOM_COM\":\"CAMPIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.80036,49.24883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30270,\"INSEE_Comm\":\"27142\",\"nomCom\":\"Champenard\",\"NOM_COM\":\"CHAMPENARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32807,49.10714]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30285,\"INSEE_Comm\":\"27014\",\"nomCom\":\"Amfreville-sur-Iton\",\"NOM_COM\":\"AMFREVILLE-SUR-ITON\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14647,49.15673]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30289,\"INSEE_Comm\":\"80369\",\"nomCom\":\"Frohen-sur-Authie\",\"NOM_COM\":\"FROHEN-SUR-AUTHIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.20851,50.20206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30290,\"INSEE_Comm\":\"60321\",\"nomCom\":\"Ivry-le-Temple\",\"NOM_COM\":\"IVRY-LE-TEMPLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03016,49.23228]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30299,\"INSEE_Comm\":\"14273\",\"nomCom\":\"Folleti�re-Abenon\",\"NOM_COM\":\"LAFOLLETIERE-ABENON\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.408,48.97385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30303,\"INSEE_Comm\":\"27515\",\"nomCom\":\"Saint-Aubin-le-Guichard\",\"NOM_COM\":\"SAINT-AUBIN-LE-GUICHARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7082,49.03851]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30304,\"INSEE_Comm\":\"14693\",\"nomCom\":\"Tordouet\",\"NOM_COM\":\"TORDOUET\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32192,49.04266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30308,\"INSEE_Comm\":\"27667\",\"nomCom\":\"Valailles\",\"NOM_COM\":\"VALAILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61701,49.11798]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30309,\"INSEE_Comm\":\"61088\",\"nomCom\":\"Champ-Haut\",\"NOM_COM\":\"CHAMP-HAUT\",\"Statut\":\"Communesimple\",\"idCan\":\"6121\",\"nomCan\":\"Merlerault\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.32525,48.72613]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30311,\"INSEE_Comm\":\"76093\",\"nomCom\":\"B�zancourt\",\"NOM_COM\":\"BEZANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61341,49.43506]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30313,\"INSEE_Comm\":\"27507\",\"nomCom\":\"Saint-Andr�-de-l'Eure\",\"NOM_COM\":\"SAINT-ANDRE-DE-L'EURE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":200,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27832,48.90265]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30317,\"INSEE_Comm\":\"27486\",\"nomCom\":\"Quittebeuf\",\"NOM_COM\":\"QUITTEBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00532,49.10731]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30318,\"INSEE_Comm\":\"95088\",\"nomCom\":\"Bonneuil-en-France\",\"NOM_COM\":\"BONNEUIL-EN-FRANCE\",\"Statut\":\"Communesimple\",\"idCan\":\"9538\",\"nomCan\":\"Garges-l�s-Gonesse-Est\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43494,48.96515]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30325,\"INSEE_Comm\":\"78172\",\"nomCom\":\"Conflans-Sainte-Honorine\",\"NOM_COM\":\"CONFLANS-SAINTE-HONORINE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7806\",\"nomCan\":\"Conflans-Sainte-Honorine\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":329,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09907,49.0001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30326,\"INSEE_Comm\":\"14309\",\"nomCom\":\"Gouvix\",\"NOM_COM\":\"GOUVIX\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30896,49.03647]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30327,\"INSEE_Comm\":\"61283\",\"nomCom\":\"Montabard\",\"NOM_COM\":\"MONTABARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08549,48.81119]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30334,\"INSEE_Comm\":\"76662\",\"nomCom\":\"Sassetot-le-Malgard�\",\"NOM_COM\":\"SASSETOT-LE-MALGARDE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89584,49.772]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30381,\"INSEE_Comm\":\"14166\",\"nomCom\":\"Colleville-Montgomery\",\"NOM_COM\":\"COLLEVILLE-MONTGOMERY\",\"Statut\":\"Communesimple\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":121,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.30139,49.27451]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30382,\"INSEE_Comm\":\"14191\",\"nomCom\":\"Courseulles-sur-Mer\",\"NOM_COM\":\"COURSEULLES-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":405,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44837,49.32056]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30383,\"INSEE_Comm\":\"27100\",\"nomCom\":\"Boulleville\",\"NOM_COM\":\"BOULLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":105,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39331,49.37055]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30384,\"INSEE_Comm\":\"76690\",\"nomCom\":\"Thil-Manneville\",\"NOM_COM\":\"THIL-MANNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99593,49.83982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30385,\"INSEE_Comm\":\"76691\",\"nomCom\":\"Thil-Riberpr�\",\"NOM_COM\":\"LETHIL-RIBERPRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58,49.63781]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30386,\"INSEE_Comm\":\"27366\",\"nomCom\":\"Letteguives\",\"NOM_COM\":\"LETTEGUIVES\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32715,49.42169]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30387,\"INSEE_Comm\":\"80240\",\"nomCom\":\"Doingt\",\"NOM_COM\":\"DOINGT\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":72,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96256,49.92318]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30388,\"INSEE_Comm\":\"60209\",\"nomCom\":\"�nencourt-le-Sec\",\"NOM_COM\":\"ENENCOURT-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91754,49.29579]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30389,\"INSEE_Comm\":\"60269\",\"nomCom\":\"Gaudechart\",\"NOM_COM\":\"GAUDECHART\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96024,49.61817]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30390,\"INSEE_Comm\":\"60488\",\"nomCom\":\"Passel\",\"NOM_COM\":\"PASSEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96572,49.55623]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30391,\"INSEE_Comm\":\"60342\",\"nomCom\":\"Laigneville\",\"NOM_COM\":\"LAIGNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":262,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43495,49.2972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30392,\"INSEE_Comm\":\"60466\",\"nomCom\":\"Noroy\",\"NOM_COM\":\"NOROY\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51026,49.4427]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30393,\"INSEE_Comm\":\"80399\",\"nomCom\":\"Guignemicourt\",\"NOM_COM\":\"GUIGNEMICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1684,49.87123]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30394,\"INSEE_Comm\":\"80282\",\"nomCom\":\"�rondelle\",\"NOM_COM\":\"ERONDELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87771,50.04668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30395,\"INSEE_Comm\":\"80661\",\"nomCom\":\"Rainneville\",\"NOM_COM\":\"RAINNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3619,49.974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30396,\"INSEE_Comm\":\"80634\",\"nomCom\":\"Pont-Noyelles\",\"NOM_COM\":\"PONT-NOYELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45269,49.94056]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30401,\"INSEE_Comm\":\"60438\",\"nomCom\":\"Moulin-sous-Touvent\",\"NOM_COM\":\"MOULIN-SOUS-TOUVENT\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.06663,49.46553]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30402,\"INSEE_Comm\":\"60184\",\"nomCom\":\"Croutoy\",\"NOM_COM\":\"CROUTOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.03586,49.377]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30416,\"INSEE_Comm\":\"80716\",\"nomCom\":\"Saint-Riquier\",\"NOM_COM\":\"SAINT-RIQUIER\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9429,50.12798]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30446,\"INSEE_Comm\":\"27546\",\"nomCom\":\"Saint-Germain-des-Angles\",\"NOM_COM\":\"SAINT-GERMAIN-DES-ANGLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13803,49.08152]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30464,\"INSEE_Comm\":\"27110\",\"nomCom\":\"Brestot\",\"NOM_COM\":\"BRESTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68057,49.34285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30471,\"INSEE_Comm\":\"27582\",\"nomCom\":\"Saint-Ouen-du-Tilleul\",\"NOM_COM\":\"SAINT-OUEN-DU-TILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":83,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94518,49.2998]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30480,\"INSEE_Comm\":\"78311\",\"nomCom\":\"Houilles\",\"NOM_COM\":\"HOUILLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7809\",\"nomCan\":\"Houilles\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":588,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18747,48.92658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30481,\"INSEE_Comm\":\"28390\",\"nomCom\":\"Tillay-le-P�neux\",\"NOM_COM\":\"TILLAY-LE-PENEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7637,48.15892]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30487,\"INSEE_Comm\":\"60076\",\"nomCom\":\"Blargies\",\"NOM_COM\":\"BLARGIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76334,49.67126]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30495,\"INSEE_Comm\":\"14752\",\"nomCom\":\"Villers-Bocage\",\"NOM_COM\":\"VILLERS-BOCAGE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":141,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.65274,49.07816]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30500,\"INSEE_Comm\":\"60060\",\"nomCom\":\"Belle-�glise\",\"NOM_COM\":\"BELLE-EGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6026\",\"nomCan\":\"Neuilly-en-Thelle\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21575,49.18787]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30502,\"INSEE_Comm\":\"14061\",\"nomCom\":\"B�ny-Bocage\",\"NOM_COM\":\"LEBENY-BOCAGE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.82923,48.93138]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30507,\"INSEE_Comm\":\"80504\",\"nomCom\":\"Malpart\",\"NOM_COM\":\"MALPART\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49821,49.69353]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30510,\"INSEE_Comm\":\"80494\",\"nomCom\":\"Louvrechy\",\"NOM_COM\":\"LOUVRECHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.39722,49.7319]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30571,\"INSEE_Comm\":\"80561\",\"nomCom\":\"Montdidier\",\"NOM_COM\":\"MONTDIDIER\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":135,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56889,49.64844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30578,\"INSEE_Comm\":\"27413\",\"nomCom\":\"Montfort-sur-Risle\",\"NOM_COM\":\"MONTFORT-SUR-RISLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2723\",\"nomCan\":\"Montfort-sur-Risle\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67056,49.29453]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30584,\"INSEE_Comm\":\"14146\",\"nomCom\":\"Cauville\",\"NOM_COM\":\"CAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56415,48.95185]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30608,\"INSEE_Comm\":\"28281\",\"nomCom\":\"Nogent-sur-Eure\",\"NOM_COM\":\"NOGENT-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3757,48.38962]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30610,\"INSEE_Comm\":\"80632\",\"nomCom\":\"Pont-de-Metz\",\"NOM_COM\":\"PONT-DE-METZ\",\"Statut\":\"Communesimple\",\"idCan\":\"8044\",\"nomCan\":\"Amiens7e(Sud-Ouest)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":240,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22862,49.883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30622,\"INSEE_Comm\":\"61048\",\"nomCom\":\"Bo�c�\",\"NOM_COM\":\"BOECE\",\"Statut\":\"Communesimple\",\"idCan\":\"6105\",\"nomCan\":\"Bazoches-sur-Ho�ne\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45454,48.51493]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30634,\"INSEE_Comm\":\"28306\",\"nomCom\":\"Pr�-Saint-Martin\",\"NOM_COM\":\"PRE-SAINT-MARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47286,48.21957]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30640,\"INSEE_Comm\":\"61037\",\"nomCom\":\"Bellavilliers\",\"NOM_COM\":\"BELLAVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.49073,48.41769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30646,\"INSEE_Comm\":\"27562\",\"nomCom\":\"Saint-Marcel\",\"NOM_COM\":\"SAINT-MARCEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2736\",\"nomCan\":\"Vernon-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43925,49.0916]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30655,\"INSEE_Comm\":\"14231\",\"nomCom\":\"Beaufour-Druval\",\"NOM_COM\":\"BEAUFOUR-DRUVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0233,49.21383]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30656,\"INSEE_Comm\":\"28081\",\"nomCom\":\"Charonville\",\"NOM_COM\":\"CHARONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31052,48.2829]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30664,\"INSEE_Comm\":\"61494\",\"nomCom\":\"Trun\",\"NOM_COM\":\"TRUN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0461,48.85105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30674,\"INSEE_Comm\":\"14735\",\"nomCom\":\"Vendeuvre\",\"NOM_COM\":\"VENDEUVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"1425\",\"nomCan\":\"Morteaux-Couliboeuf\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.08299,49.00665]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30676,\"INSEE_Comm\":\"95523\",\"nomCom\":\"Roche-Guyon\",\"NOM_COM\":\"LAROCHE-GUYON\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63442,49.08749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30691,\"INSEE_Comm\":\"76248\",\"nomCom\":\"Estouteville-�calles\",\"NOM_COM\":\"ESTOUTEVILLE-ECALLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30881,49.58676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30702,\"INSEE_Comm\":\"27242\",\"nomCom\":\"Fidelaire\",\"NOM_COM\":\"LEFIDELAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":61,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80246,48.94368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30718,\"INSEE_Comm\":\"14217\",\"nomCom\":\"Dampierre\",\"NOM_COM\":\"DAMPIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86609,49.04145]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30719,\"INSEE_Comm\":\"14703\",\"nomCom\":\"Tournebu\",\"NOM_COM\":\"TOURNEBU\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32627,48.96324]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30720,\"INSEE_Comm\":\"14331\",\"nomCom\":\"Hi�ville\",\"NOM_COM\":\"HIEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.00302,49.02222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30760,\"INSEE_Comm\":\"76315\",\"nomCom\":\"Grainville-la-Teinturi�re\",\"NOM_COM\":\"GRAINVILLE-LA-TEINTURIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64331,49.74524]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30780,\"INSEE_Comm\":\"14016\",\"nomCom\":\"Annebault\",\"NOM_COM\":\"ANNEBAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05405,49.24897]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30781,\"INSEE_Comm\":\"14062\",\"nomCom\":\"B�ny-sur-Mer\",\"NOM_COM\":\"BENY-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43625,49.29067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30782,\"INSEE_Comm\":\"76413\",\"nomCom\":\"Martigny\",\"NOM_COM\":\"MARTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14436,49.86027]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30783,\"INSEE_Comm\":\"76703\",\"nomCom\":\"Touffreville-sur-Eu\",\"NOM_COM\":\"TOUFFREVILLE-SUR-EU\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32075,49.99196]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30784,\"INSEE_Comm\":\"27664\",\"nomCom\":\"Tronquay\",\"NOM_COM\":\"LETRONQUAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45434,49.43754]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30785,\"INSEE_Comm\":\"76038\",\"nomCom\":\"Authieux-Rati�ville\",\"NOM_COM\":\"AUTHIEUX-RATIEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14633,49.59799]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30786,\"INSEE_Comm\":\"76410\",\"nomCom\":\"Maromme\",\"NOM_COM\":\"MAROMME\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7636\",\"nomCan\":\"Maromme\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":167,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03222,49.47693]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30787,\"INSEE_Comm\":\"76681\",\"nomCom\":\"Sotteville-l�s-Rouen\",\"NOM_COM\":\"SOTTEVILLE-LES-ROUEN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7692\",\"nomCan\":\"Sotteville-l�s-Rouen\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":660,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09508,49.41077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30788,\"INSEE_Comm\":\"76319\",\"nomCom\":\"Grand-Couronne\",\"NOM_COM\":\"GRAND-COURONNE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":251,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00469,49.34852]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30789,\"INSEE_Comm\":\"76471\",\"nomCom\":\"Norville\",\"NOM_COM\":\"NORVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64354,49.48166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30790,\"INSEE_Comm\":\"60377\",\"nomCom\":\"Maisoncelle-Tuilerie\",\"NOM_COM\":\"MAISONCELLE-TUILERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21898,49.58974]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30791,\"INSEE_Comm\":\"60182\",\"nomCom\":\"Crocq\",\"NOM_COM\":\"LECROCQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18869,49.62089]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30792,\"INSEE_Comm\":\"60460\",\"nomCom\":\"Neuville-Vault\",\"NOM_COM\":\"LANEUVILLE-VAULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96688,49.48901]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30793,\"INSEE_Comm\":\"60647\",\"nomCom\":\"Trosly-Breuil\",\"NOM_COM\":\"TROSLY-BREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":125,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96595,49.39959]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30794,\"INSEE_Comm\":\"60107\",\"nomCom\":\"Breuil-le-Vert\",\"NOM_COM\":\"BREUIL-LE-VERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":119,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42526,49.36201]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30795,\"INSEE_Comm\":\"60675\",\"nomCom\":\"Vignemont\",\"NOM_COM\":\"VIGNEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.77723,49.49632]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30796,\"INSEE_Comm\":\"60669\",\"nomCom\":\"Verderonne\",\"NOM_COM\":\"VERDERONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4916,49.32883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30797,\"INSEE_Comm\":\"60582\",\"nomCom\":\"Saint-L�ger-aux-Bois\",\"NOM_COM\":\"SAINT-LEGER-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95211,49.4782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30798,\"INSEE_Comm\":\"60132\",\"nomCom\":\"Catigny\",\"NOM_COM\":\"CATIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94193,49.63489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30799,\"INSEE_Comm\":\"80019\",\"nomCom\":\"Allery\",\"NOM_COM\":\"ALLERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":57,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88551,49.95942]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30805,\"INSEE_Comm\":\"80737\",\"nomCom\":\"Sorel\",\"NOM_COM\":\"SOREL\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05248,50.02522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30813,\"INSEE_Comm\":\"80371\",\"nomCom\":\"Froyelles\",\"NOM_COM\":\"FROYELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9255,50.22316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30835,\"INSEE_Comm\":\"76293\",\"nomCom\":\"Fultot\",\"NOM_COM\":\"FULTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78179,49.75886]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30836,\"INSEE_Comm\":\"76693\",\"nomCom\":\"Tilleul\",\"NOM_COM\":\"LETILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20447,49.68568]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30837,\"INSEE_Comm\":\"76632\",\"nomCom\":\"Saint-Pierre-B�nouville\",\"NOM_COM\":\"SAINT-PIERRE-BENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97405,49.73844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30838,\"INSEE_Comm\":\"76688\",\"nomCom\":\"Thiergeville\",\"NOM_COM\":\"THIERGEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4881,49.72825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30839,\"INSEE_Comm\":\"76092\",\"nomCom\":\"Beuzevillette\",\"NOM_COM\":\"BEUZEVILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54776,49.57541]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30840,\"INSEE_Comm\":\"76725\",\"nomCom\":\"Vattetot-sous-Beaumont\",\"NOM_COM\":\"VATTETOT-SOUS-BEAUMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44917,49.62853]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30842,\"INSEE_Comm\":\"28391\",\"nomCom\":\"Toury\",\"NOM_COM\":\"TOURY\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":74,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94345,48.19542]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30843,\"INSEE_Comm\":\"28094\",\"nomCom\":\"Chaudon\",\"NOM_COM\":\"CHAUDON\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49383,48.65428]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30847,\"INSEE_Comm\":\"27574\",\"nomCom\":\"Saint-Nicolas-du-Bosc\",\"NOM_COM\":\"SAINT-NICOLAS-DU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86252,49.20079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30848,\"INSEE_Comm\":\"27495\",\"nomCom\":\"Roquette\",\"NOM_COM\":\"LAROQUETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34339,49.25932]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30849,\"INSEE_Comm\":\"27635\",\"nomCom\":\"Thuit\",\"NOM_COM\":\"LETHUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36726,49.25975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30850,\"INSEE_Comm\":\"76640\",\"nomCom\":\"Saint-Pierre-l�s-Elbeuf\",\"NOM_COM\":\"SAINT-PIERRE-LES-ELBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7661\",\"nomCan\":\"Caudebec-l�s-Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":225,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04794,49.2779]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30870,\"INSEE_Comm\":\"27396\",\"nomCom\":\"M�nesqueville\",\"NOM_COM\":\"MENESQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40685,49.3574]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30888,\"INSEE_Comm\":\"27542\",\"nomCom\":\"Saint-Georges-du-Vi�vre\",\"NOM_COM\":\"SAINT-GEORGES-DU-VIEVRE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":63,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57977,49.24214]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30889,\"INSEE_Comm\":\"78415\",\"nomCom\":\"Montainville\",\"NOM_COM\":\"MONTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85246,48.8802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30890,\"INSEE_Comm\":\"28024\",\"nomCom\":\"Barjouville\",\"NOM_COM\":\"BARJOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":100,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4721,48.40664]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30891,\"INSEE_Comm\":\"28067\",\"nomCom\":\"Cernay\",\"NOM_COM\":\"CERNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23048,48.38541]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30896,\"INSEE_Comm\":\"14684\",\"nomCom\":\"Tessel\",\"NOM_COM\":\"TESSEL\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56862,49.15088]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30897,\"INSEE_Comm\":\"14369\",\"nomCom\":\"Litteau\",\"NOM_COM\":\"LITTEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.90977,49.15347]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30907,\"INSEE_Comm\":\"95214\",\"nomCom\":\"�pinay-Champl�treux\",\"NOM_COM\":\"EPINAY-CHAMPLATREUX\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4071,49.09003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30910,\"INSEE_Comm\":\"78623\",\"nomCom\":\"Tremblay-sur-Mauldre\",\"NOM_COM\":\"LETREMBLAY-SUR-MAULDRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87802,48.7835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30915,\"INSEE_Comm\":\"14573\",\"nomCom\":\"Saint-Denis-Maisoncelles\",\"NOM_COM\":\"SAINT-DENIS-MAISONCELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86412,48.97939]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30917,\"INSEE_Comm\":\"80827\",\"nomCom\":\"Woincourt\",\"NOM_COM\":\"WOINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54101,50.06283]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30921,\"INSEE_Comm\":\"80412\",\"nomCom\":\"Hamelet\",\"NOM_COM\":\"HAMELET\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53312,49.89617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30922,\"INSEE_Comm\":\"80400\",\"nomCom\":\"Guillaucourt\",\"NOM_COM\":\"GUILLAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63431,49.83873]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30924,\"INSEE_Comm\":\"80047\",\"nomCom\":\"Aveluy\",\"NOM_COM\":\"AVELUY\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66043,50.03116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30925,\"INSEE_Comm\":\"80113\",\"nomCom\":\"Bonneville\",\"NOM_COM\":\"BONNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.26235,50.07787]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30926,\"INSEE_Comm\":\"80305\",\"nomCom\":\"Ferri�res\",\"NOM_COM\":\"FERRIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17849,49.8849]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30940,\"INSEE_Comm\":\"28279\",\"nomCom\":\"Nogent-le-Roi\",\"NOM_COM\":\"NOGENT-LE-ROI\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":95,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52406,48.63007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30952,\"INSEE_Comm\":\"14255\",\"nomCom\":\"�touvy\",\"NOM_COM\":\"ETOUVY\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.89917,48.89007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30954,\"INSEE_Comm\":\"61447\",\"nomCom\":\"Saint-Pierre-du-Regard\",\"NOM_COM\":\"SAINT-PIERRE-DU-REGARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":72,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.541,48.83384]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30979,\"INSEE_Comm\":\"76707\",\"nomCom\":\"Tourville-sur-Arques\",\"NOM_COM\":\"TOURVILLE-SUR-ARQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":82,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09312,49.8597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":30981,\"INSEE_Comm\":\"76673\",\"nomCom\":\"Servaville-Salmonville\",\"NOM_COM\":\"SERVAVILLE-SALMONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":89,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27094,49.4774]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31000,\"INSEE_Comm\":\"28402\",\"nomCom\":\"V�rigny\",\"NOM_COM\":\"VERIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3369,48.52909]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31002,\"INSEE_Comm\":\"28349\",\"nomCom\":\"Saint-Lucien\",\"NOM_COM\":\"SAINT-LUCIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62331,48.63916]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31003,\"INSEE_Comm\":\"28194\",\"nomCom\":\"Houville-la-Branche\",\"NOM_COM\":\"HOUVILLE-LA-BRANCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63868,48.44431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31031,\"INSEE_Comm\":\"27019\",\"nomCom\":\"Armenti�res-sur-Avre\",\"NOM_COM\":\"ARMENTIERES-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80513,48.68042]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31040,\"INSEE_Comm\":\"61241\",\"nomCom\":\"Madeleine-Bouvet\",\"NOM_COM\":\"LAMADELEINE-BOUVET\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89881,48.46881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31041,\"INSEE_Comm\":\"61147\",\"nomCom\":\"Dorceau\",\"NOM_COM\":\"DORCEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6130\",\"nomCan\":\"R�malard\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81399,48.42871]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31048,\"INSEE_Comm\":\"27241\",\"nomCom\":\"Feuguerolles\",\"NOM_COM\":\"FEUGUEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03389,49.13178]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31053,\"INSEE_Comm\":\"14300\",\"nomCom\":\"Gerrots\",\"NOM_COM\":\"GERROTS\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0019,49.1933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31054,\"INSEE_Comm\":\"28093\",\"nomCom\":\"Ch�tillon-en-Dunois\",\"NOM_COM\":\"CHATILLON-EN-DUNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18254,48.12507]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31055,\"INSEE_Comm\":\"28162\",\"nomCom\":\"Fresnay-le-Comte\",\"NOM_COM\":\"FRESNAY-LE-COMTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2826\",\"nomCan\":\"Chartres-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47798,48.30436]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31057,\"INSEE_Comm\":\"28066\",\"nomCom\":\"Bullou\",\"NOM_COM\":\"BULLOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24637,48.23531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31059,\"INSEE_Comm\":\"28262\",\"nomCom\":\"Montigny-le-Gannelon\",\"NOM_COM\":\"MONTIGNY-LE-GANNELON\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2264,48.01641]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31060,\"INSEE_Comm\":\"28133\",\"nomCom\":\"Douy\",\"NOM_COM\":\"DOUY\",\"Statut\":\"Communesimple\",\"idCan\":\"2811\",\"nomCan\":\"Cloyes-sur-le-Loir\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27968,48.03661]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31071,\"INSEE_Comm\":\"78163\",\"nomCom\":\"Civry-la-For�t\",\"NOM_COM\":\"CIVRY-LA-FORET\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61683,48.8642]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31082,\"INSEE_Comm\":\"76235\",\"nomCom\":\"Envermeu\",\"NOM_COM\":\"ENVERMEU\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":84,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.26349,49.89828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31087,\"INSEE_Comm\":\"61085\",\"nomCom\":\"Champ-de-la-Pierre\",\"NOM_COM\":\"LECHAMP-DE-LA-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.20523,48.60421]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31088,\"INSEE_Comm\":\"95592\",\"nomCom\":\"Seraincourt\",\"NOM_COM\":\"SERAINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87867,49.04214]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31101,\"INSEE_Comm\":\"95257\",\"nomCom\":\"Frette-sur-Seine\",\"NOM_COM\":\"LAFRETTE-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"9531\",\"nomCan\":\"Herblay\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":100,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17787,48.97452]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31102,\"INSEE_Comm\":\"95637\",\"nomCom\":\"Vaur�al\",\"NOM_COM\":\"VAUREAL\",\"Statut\":\"Communesimple\",\"idCan\":\"9539\",\"nomCan\":\"Hautil\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":593,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02447,49.02951]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31114,\"INSEE_Comm\":\"14430\",\"nomCom\":\"Meuvaines\",\"NOM_COM\":\"MEUVAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.57241,49.32566]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31137,\"INSEE_Comm\":\"95213\",\"nomCom\":\"�piais-Rhus\",\"NOM_COM\":\"EPIAIS-RHUS\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07314,49.12368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31138,\"INSEE_Comm\":\"95268\",\"nomCom\":\"Garges-l�s-Gonesse\",\"NOM_COM\":\"GARGES-LES-GONESSE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9597\",\"nomCan\":\"Garges-l�s-Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":678,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40534,48.97012]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31163,\"INSEE_Comm\":\"14329\",\"nomCom\":\"Heuland\",\"NOM_COM\":\"HEULAND\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.00104,49.26478]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31165,\"INSEE_Comm\":\"14377\",\"nomCom\":\"Longues-sur-Mer\",\"NOM_COM\":\"LONGUES-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.69424,49.33168]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31166,\"INSEE_Comm\":\"76198\",\"nomCom\":\"Criquetot-sur-Ouville\",\"NOM_COM\":\"CRIQUETOT-SUR-OUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":56,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84971,49.67168]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31167,\"INSEE_Comm\":\"76176\",\"nomCom\":\"Clasville\",\"NOM_COM\":\"CLASVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62098,49.79328]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31168,\"INSEE_Comm\":\"76521\",\"nomCom\":\"Rebets\",\"NOM_COM\":\"REBETS\",\"Statut\":\"Communesimple\",\"idCan\":\"7608\",\"nomCan\":\"Buchy\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39322,49.51307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31169,\"INSEE_Comm\":\"76247\",\"nomCom\":\"Esteville\",\"NOM_COM\":\"ESTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.21579,49.60919]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31170,\"INSEE_Comm\":\"27488\",\"nomCom\":\"Renneville\",\"NOM_COM\":\"RENNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.326,49.39613]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31171,\"INSEE_Comm\":\"76547\",\"nomCom\":\"Rue-Saint-Pierre\",\"NOM_COM\":\"LARUE-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":101,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25404,49.56699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31172,\"INSEE_Comm\":\"60426\",\"nomCom\":\"Montreuil-sur-Th�rain\",\"NOM_COM\":\"MONTREUIL-SUR-THERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19419,49.38134]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31173,\"INSEE_Comm\":\"80084\",\"nomCom\":\"Bermesnil\",\"NOM_COM\":\"BERMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74399,49.89784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31174,\"INSEE_Comm\":\"60483\",\"nomCom\":\"Orvillers-Sorel\",\"NOM_COM\":\"ORVILLERS-SOREL\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71032,49.57448]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31175,\"INSEE_Comm\":\"60071\",\"nomCom\":\"Biermont\",\"NOM_COM\":\"BIERMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73906,49.57701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31176,\"INSEE_Comm\":\"60263\",\"nomCom\":\"Fr�toy-le-Ch�teau\",\"NOM_COM\":\"FRETOY-LE-CHATEAU\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.97315,49.66182]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31177,\"INSEE_Comm\":\"60414\",\"nomCom\":\"Montataire\",\"NOM_COM\":\"MONTATAIRE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":343,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43166,49.26333]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31178,\"INSEE_Comm\":\"60521\",\"nomCom\":\"Quincampoix-Fleuzy\",\"NOM_COM\":\"QUINCAMPOIX-FLEUZY\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76895,49.74549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31179,\"INSEE_Comm\":\"80559\",\"nomCom\":\"Montagne-Fayel\",\"NOM_COM\":\"MONTAGNE-FAYEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.987,49.91112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31198,\"INSEE_Comm\":\"80588\",\"nomCom\":\"Neufmoulin\",\"NOM_COM\":\"NEUFMOULIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8001\",\"nomCan\":\"Abbeville-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90412,50.12592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31219,\"INSEE_Comm\":\"76160\",\"nomCom\":\"Carville-la-Folleti�re\",\"NOM_COM\":\"CARVILLE-LA-FOLLETIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":48,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.81671,49.55649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31226,\"INSEE_Comm\":\"78314\",\"nomCom\":\"Issou\",\"NOM_COM\":\"ISSOU\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":291,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78915,48.98699]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31233,\"INSEE_Comm\":\"27152\",\"nomCom\":\"Ch�teau-sur-Epte\",\"NOM_COM\":\"CHATEAU-SUR-EPTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.65875,49.20042]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31251,\"INSEE_Comm\":\"27673\",\"nomCom\":\"Vatteville\",\"NOM_COM\":\"VATTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2849,49.28029]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31255,\"INSEE_Comm\":\"61202\",\"nomCom\":\"Hauterive\",\"NOM_COM\":\"HAUTERIVE\",\"Statut\":\"Communesimple\",\"idCan\":\"6120\",\"nomCan\":\"M�le-sur-Sarthe\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20514,48.48132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31262,\"INSEE_Comm\":\"78090\",\"nomCom\":\"Bouafle\",\"NOM_COM\":\"BOUAFLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89715,48.96058]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31274,\"INSEE_Comm\":\"14241\",\"nomCom\":\"�pinay-sur-Odon\",\"NOM_COM\":\"EPINAY-SUR-ODON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.61906,49.0688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31283,\"INSEE_Comm\":\"95598\",\"nomCom\":\"Soisy-sous-Montmorency\",\"NOM_COM\":\"SOISY-SOUS-MONTMORENCY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9524\",\"nomCan\":\"Soisy-sous-Montmorency\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":668,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3005,48.98841]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31287,\"INSEE_Comm\":\"76460\",\"nomCom\":\"Nesle-Normandeuse\",\"NOM_COM\":\"NESLE-NORMANDEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66867,49.90162]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31289,\"INSEE_Comm\":\"80792\",\"nomCom\":\"Vicogne\",\"NOM_COM\":\"LAVICOGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32503,50.06392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31290,\"INSEE_Comm\":\"80473\",\"nomCom\":\"Liancourt-Fosse\",\"NOM_COM\":\"LIANCOURT-FOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81451,49.75568]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31291,\"INSEE_Comm\":\"80530\",\"nomCom\":\"M�ricourt-l'Abb�\",\"NOM_COM\":\"MERICOURT-L'ABBE\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":53,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56298,49.94507]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31292,\"INSEE_Comm\":\"80574\",\"nomCom\":\"Mouflers\",\"NOM_COM\":\"MOUFLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.0564,50.04447]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31293,\"INSEE_Comm\":\"80600\",\"nomCom\":\"Noyelles-sur-Mer\",\"NOM_COM\":\"NOYELLES-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7212,50.18728]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31294,\"INSEE_Comm\":\"80068\",\"nomCom\":\"Beaumetz\",\"NOM_COM\":\"BEAUMETZ\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11024,50.13494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31359,\"INSEE_Comm\":\"60667\",\"nomCom\":\"Verberie\",\"NOM_COM\":\"VERBERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":261,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73302,49.30576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31375,\"INSEE_Comm\":\"27669\",\"nomCom\":\"Valletot\",\"NOM_COM\":\"VALLETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61211,49.3668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31400,\"INSEE_Comm\":\"27240\",\"nomCom\":\"Ferri�re-sur-Risle\",\"NOM_COM\":\"LAFERRIERE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78713,48.97778]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31420,\"INSEE_Comm\":\"76404\",\"nomCom\":\"Man�glise\",\"NOM_COM\":\"MANEGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25679,49.56676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31425,\"INSEE_Comm\":\"28059\",\"nomCom\":\"Brezolles\",\"NOM_COM\":\"BREZOLLES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":80,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06431,48.68881]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31428,\"INSEE_Comm\":\"27252\",\"nomCom\":\"Fontaine-la-Louvet\",\"NOM_COM\":\"FONTAINE-LA-LOUVET\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.4462,49.15826]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31438,\"INSEE_Comm\":\"28224\",\"nomCom\":\"Lutz-en-Dunois\",\"NOM_COM\":\"LUTZ-EN-DUNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.42179,48.0585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31440,\"INSEE_Comm\":\"60347\",\"nomCom\":\"Lannoy-Cuill�re\",\"NOM_COM\":\"LANNOY-CUILLERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73569,49.7087]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31458,\"INSEE_Comm\":\"27621\",\"nomCom\":\"Serez\",\"NOM_COM\":\"SEREZ\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35815,48.93371]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31460,\"INSEE_Comm\":\"78668\",\"nomCom\":\"Villeneuve-en-Chevrie\",\"NOM_COM\":\"LAVILLENEUVE-EN-CHEVRIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53112,49.01713]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31462,\"INSEE_Comm\":\"27395\",\"nomCom\":\"M�licourt\",\"NOM_COM\":\"MELICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50246,48.91216]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31473,\"INSEE_Comm\":\"61060\",\"nomCom\":\"Brethel\",\"NOM_COM\":\"BRETHEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.54287,48.71511]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31474,\"INSEE_Comm\":\"27442\",\"nomCom\":\"Notre-Dame-du-Hamel\",\"NOM_COM\":\"NOTRE-DAME-DU-HAMEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50989,48.89232]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31487,\"INSEE_Comm\":\"61428\",\"nomCom\":\"Saint-Maurice-du-D�sert\",\"NOM_COM\":\"SAINT-MAURICE-DU-DESERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6114\",\"nomCan\":\"Fert�-Mac�\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38658,48.61053]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31494,\"INSEE_Comm\":\"14640\",\"nomCom\":\"Saint-Pair\",\"NOM_COM\":\"SAINT-PAIR\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.18673,49.16576]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31496,\"INSEE_Comm\":\"14448\",\"nomCom\":\"Montreuil-en-Auge\",\"NOM_COM\":\"MONTREUIL-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07053,49.16742]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31529,\"INSEE_Comm\":\"28294\",\"nomCom\":\"Oysonville\",\"NOM_COM\":\"OYSONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94831,48.39281]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31533,\"INSEE_Comm\":\"60552\",\"nomCom\":\"Rouville\",\"NOM_COM\":\"ROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.88058,49.21013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31556,\"INSEE_Comm\":\"14123\",\"nomCom\":\"Cairon\",\"NOM_COM\":\"CAIRON\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":132,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4379,49.23412]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31557,\"INSEE_Comm\":\"14204\",\"nomCom\":\"Cricqueville-en-Bessin\",\"NOM_COM\":\"CRICQUEVILLE-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.001,49.37929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31558,\"INSEE_Comm\":\"14563\",\"nomCom\":\"Saint-Beno�t-d'H�bertot\",\"NOM_COM\":\"SAINT-BENOIT-D'HEBERTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27281,49.32497]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31559,\"INSEE_Comm\":\"76747\",\"nomCom\":\"Virville\",\"NOM_COM\":\"VIRVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.35626,49.59208]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31560,\"INSEE_Comm\":\"76565\",\"nomCom\":\"Saint-Aubin-sur-Scie\",\"NOM_COM\":\"SAINT-AUBIN-SUR-SCIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07804,49.88251]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31561,\"INSEE_Comm\":\"76541\",\"nomCom\":\"Roumare\",\"NOM_COM\":\"ROUMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":93,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9686,49.50788]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31562,\"INSEE_Comm\":\"76479\",\"nomCom\":\"Nullemont\",\"NOM_COM\":\"NULLEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6469,49.77071]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31563,\"INSEE_Comm\":\"80054\",\"nomCom\":\"Barleux\",\"NOM_COM\":\"BARLEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.89316,49.89766]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31565,\"INSEE_Comm\":\"60302\",\"nomCom\":\"Haudivillers\",\"NOM_COM\":\"HAUDIVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24215,49.48675]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31566,\"INSEE_Comm\":\"60330\",\"nomCom\":\"Laboissi�re-en-Thelle\",\"NOM_COM\":\"LABOISSIERE-EN-THELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6028\",\"nomCan\":\"Noailles\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.15238,49.2872]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31567,\"INSEE_Comm\":\"80796\",\"nomCom\":\"Villeroy\",\"NOM_COM\":\"VILLEROY\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72734,49.93932]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31568,\"INSEE_Comm\":\"60611\",\"nomCom\":\"Senantes\",\"NOM_COM\":\"SENANTES\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83368,49.48248]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31570,\"INSEE_Comm\":\"60064\",\"nomCom\":\"Berneuil-sur-Aisne\",\"NOM_COM\":\"BERNEUIL-SUR-AISNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.0001,49.42181]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31571,\"INSEE_Comm\":\"60499\",\"nomCom\":\"Plessis-de-Roye\",\"NOM_COM\":\"PLESSIS-DE-ROYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82849,49.57159]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31572,\"INSEE_Comm\":\"60529\",\"nomCom\":\"R�m�court\",\"NOM_COM\":\"REMECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49243,49.43004]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31573,\"INSEE_Comm\":\"60547\",\"nomCom\":\"Rosoy\",\"NOM_COM\":\"ROSOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50931,49.33929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31574,\"INSEE_Comm\":\"60674\",\"nomCom\":\"Vieux-Moulin\",\"NOM_COM\":\"VIEUX-MOULIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6037\",\"nomCan\":\"Compi�gne-Sud-Est\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.92564,49.38473]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31575,\"INSEE_Comm\":\"80049\",\"nomCom\":\"Ayencourt\",\"NOM_COM\":\"AYENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55113,49.62649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31576,\"INSEE_Comm\":\"60225\",\"nomCom\":\"�touy\",\"NOM_COM\":\"ETOUY\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3702,49.42804]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31577,\"INSEE_Comm\":\"80187\",\"nomCom\":\"Chauss�e-Tirancourt\",\"NOM_COM\":\"LACHAUSSEE-TIRANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16747,49.96114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31578,\"INSEE_Comm\":\"80014\",\"nomCom\":\"Aizecourt-le-Bas\",\"NOM_COM\":\"AIZECOURT-LE-BAS\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.0291,49.98678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31579,\"INSEE_Comm\":\"80404\",\"nomCom\":\"Guyencourt-Saulcourt\",\"NOM_COM\":\"GUYENCOURT-SAULCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.08079,49.99517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31606,\"INSEE_Comm\":\"76380\",\"nomCom\":\"Lammerville\",\"NOM_COM\":\"LAMMERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97089,49.79435]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31607,\"INSEE_Comm\":\"76675\",\"nomCom\":\"Sierville\",\"NOM_COM\":\"SIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":61,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03759,49.59158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31608,\"INSEE_Comm\":\"76710\",\"nomCom\":\"Tr�mauville\",\"NOM_COM\":\"TREMAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52142,49.66496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31609,\"INSEE_Comm\":\"76234\",\"nomCom\":\"�manville\",\"NOM_COM\":\"EMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7641\",\"nomCan\":\"Pavilly\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9618,49.62209]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31613,\"INSEE_Comm\":\"28230\",\"nomCom\":\"Maisons\",\"NOM_COM\":\"MAISONS\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84482,48.40368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31614,\"INSEE_Comm\":\"28291\",\"nomCom\":\"Ouarville\",\"NOM_COM\":\"OUARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76952,48.36172]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31619,\"INSEE_Comm\":\"27431\",\"nomCom\":\"Neuve-Lyre\",\"NOM_COM\":\"LANEUVE-LYRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2731\",\"nomCan\":\"Rugles\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73647,48.90233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31620,\"INSEE_Comm\":\"27518\",\"nomCom\":\"Saint-Aubin-sur-Quillebeuf\",\"NOM_COM\":\"SAINT-AUBIN-SUR-QUILLEBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52491,49.44936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31635,\"INSEE_Comm\":\"27595\",\"nomCom\":\"Saint-Pierre-du-Bosgu�rard\",\"NOM_COM\":\"SAINT-PIERRE-DU-BOSGUERARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88985,49.26038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31638,\"INSEE_Comm\":\"27034\",\"nomCom\":\"Bacqueville\",\"NOM_COM\":\"BACQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36659,49.32192]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31639,\"INSEE_Comm\":\"27008\",\"nomCom\":\"Alizay\",\"NOM_COM\":\"ALIZAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":73,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17828,49.32191]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31656,\"INSEE_Comm\":\"28008\",\"nomCom\":\"Ardelles\",\"NOM_COM\":\"ARDELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17907,48.54608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31657,\"INSEE_Comm\":\"28135\",\"nomCom\":\"Droue-sur-Drouette\",\"NOM_COM\":\"DROUE-SUR-DROUETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70075,48.60192]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31660,\"INSEE_Comm\":\"80393\",\"nomCom\":\"Gruny\",\"NOM_COM\":\"GRUNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.81653,49.7264]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31677,\"INSEE_Comm\":\"80681\",\"nomCom\":\"Rouvrel\",\"NOM_COM\":\"ROUVREL\",\"Statut\":\"Communesimple\",\"idCan\":\"8005\",\"nomCan\":\"Ailly-sur-Noye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41704,49.76785]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31678,\"INSEE_Comm\":\"80132\",\"nomCom\":\"Braches\",\"NOM_COM\":\"BRACHES\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49898,49.73024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31679,\"INSEE_Comm\":\"80583\",\"nomCom\":\"Nampty\",\"NOM_COM\":\"NAMPTY\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21654,49.7893]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31680,\"INSEE_Comm\":\"80478\",\"nomCom\":\"Ligni�res\",\"NOM_COM\":\"LIGNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64872,49.67156]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31681,\"INSEE_Comm\":\"80385\",\"nomCom\":\"Grand-Laviers\",\"NOM_COM\":\"GRAND-LAVIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8001\",\"nomCan\":\"Abbeville-Nord\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78824,50.13451]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31685,\"INSEE_Comm\":\"80110\",\"nomCom\":\"Boismont\",\"NOM_COM\":\"BOISMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67343,50.15791]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31699,\"INSEE_Comm\":\"27551\",\"nomCom\":\"Saint-Jean-de-la-L�queraye\",\"NOM_COM\":\"SAINT-JEAN-DE-LA-LEQUERAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56034,49.22517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31713,\"INSEE_Comm\":\"14156\",\"nomCom\":\"Ch�nedoll�\",\"NOM_COM\":\"CHENEDOLLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.76488,48.84715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31734,\"INSEE_Comm\":\"27604\",\"nomCom\":\"Saint-Sulpice-de-Grimbouville\",\"NOM_COM\":\"SAINT-SULPICE-DE-GRIMBOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.44872,49.37517]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31736,\"INSEE_Comm\":\"14431\",\"nomCom\":\"M�zidon-Canon\",\"NOM_COM\":\"MEZIDON-CANON\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":166,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07403,49.07844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31756,\"INSEE_Comm\":\"28071\",\"nomCom\":\"Champrond-en-G�tine\",\"NOM_COM\":\"CHAMPROND-EN-GATINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07458,48.39593]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31759,\"INSEE_Comm\":\"14373\",\"nomCom\":\"Locheur\",\"NOM_COM\":\"LELOCHEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.55609,49.10522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31783,\"INSEE_Comm\":\"28154\",\"nomCom\":\"Fontaine-la-Guyon\",\"NOM_COM\":\"FONTAINE-LA-GUYON\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":136,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29751,48.47547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31784,\"INSEE_Comm\":\"28333\",\"nomCom\":\"Saint-Denis-des-Puits\",\"NOM_COM\":\"SAINT-DENIS-DES-PUITS\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16252,48.38013]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31795,\"INSEE_Comm\":\"28217\",\"nomCom\":\"Louvilliers-l�s-Perche\",\"NOM_COM\":\"LOUVILLIERS-LES-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06602,48.61617]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31801,\"INSEE_Comm\":\"14620\",\"nomCom\":\"Saint-Martin-aux-Chartrains\",\"NOM_COM\":\"SAINT-MARTIN-AUX-CHARTRAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1544,49.30842]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31812,\"INSEE_Comm\":\"28147\",\"nomCom\":\"Favi�res\",\"NOM_COM\":\"FAVIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22894,48.53208]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31816,\"INSEE_Comm\":\"27073\",\"nomCom\":\"Bois-le-Roi\",\"NOM_COM\":\"BOIS-LE-ROI\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34099,48.86103]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31818,\"INSEE_Comm\":\"28050\",\"nomCom\":\"Boncourt\",\"NOM_COM\":\"BONCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.46368,48.84651]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31819,\"INSEE_Comm\":\"27599\",\"nomCom\":\"Saint-Pierre-la-Garenne\",\"NOM_COM\":\"SAINT-PIERRE-LA-GARENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39128,49.14752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31829,\"INSEE_Comm\":\"28246\",\"nomCom\":\"Meslay-le-Vidame\",\"NOM_COM\":\"MESLAY-LE-VIDAME\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.48219,48.27784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31831,\"INSEE_Comm\":\"61026\",\"nomCom\":\"Barville\",\"NOM_COM\":\"BARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34649,48.47258]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31836,\"INSEE_Comm\":\"27268\",\"nomCom\":\"Fresne\",\"NOM_COM\":\"LEFRESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97533,48.95672]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31847,\"INSEE_Comm\":\"27173\",\"nomCom\":\"Corneville-la-Fouqueti�re\",\"NOM_COM\":\"CORNEVILLE-LA-FOUQUETIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70305,49.05987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31849,\"INSEE_Comm\":\"27523\",\"nomCom\":\"Saint-Clair-d'Arcey\",\"NOM_COM\":\"SAINT-CLAIR-D'ARCEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2741\",\"nomCan\":\"Bernay-Est\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66287,49.06378]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31852,\"INSEE_Comm\":\"27642\",\"nomCom\":\"Tilleul-Othon\",\"NOM_COM\":\"LETILLEUL-OTHON\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79597,49.11341]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31855,\"INSEE_Comm\":\"27618\",\"nomCom\":\"S�b�court\",\"NOM_COM\":\"SEBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83137,48.97557]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31865,\"INSEE_Comm\":\"61359\",\"nomCom\":\"Saint-Agnan-sur-Erre\",\"NOM_COM\":\"SAINT-AGNAN-SUR-ERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6132\",\"nomCan\":\"Theil\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71584,48.31467]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31867,\"INSEE_Comm\":\"78642\",\"nomCom\":\"Verneuil-sur-Seine\",\"NOM_COM\":\"VERNEUIL-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7825\",\"nomCan\":\"Triel-sur-Seine\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":176,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96277,48.98721]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31868,\"INSEE_Comm\":\"78382\",\"nomCom\":\"Maurecourt\",\"NOM_COM\":\"MAURECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7839\",\"nomCan\":\"Andr�sy\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":258,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05298,48.99875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31869,\"INSEE_Comm\":\"78518\",\"nomCom\":\"Rennemoulin\",\"NOM_COM\":\"RENNEMOULIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04229,48.83325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31870,\"INSEE_Comm\":\"78420\",\"nomCom\":\"Montfort-l'Amaury\",\"NOM_COM\":\"MONTFORT-L'AMAURY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80894,48.77135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31873,\"INSEE_Comm\":\"14291\",\"nomCom\":\"Fresney-le-Vieux\",\"NOM_COM\":\"FRESNEY-LE-VIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38627,49.0051]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31874,\"INSEE_Comm\":\"61444\",\"nomCom\":\"Saint-Philbert-sur-Orne\",\"NOM_COM\":\"SAINT-PHILBERT-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.37594,48.83476]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31875,\"INSEE_Comm\":\"14100\",\"nomCom\":\"Bretteville-sur-Laize\",\"NOM_COM\":\"BRETTEVILLE-SUR-LAIZE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":172,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.32604,49.04984]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31894,\"INSEE_Comm\":\"14012\",\"nomCom\":\"Angerville\",\"NOM_COM\":\"ANGERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.02735,49.24437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31907,\"INSEE_Comm\":\"95169\",\"nomCom\":\"Commeny\",\"NOM_COM\":\"COMMENY\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88801,49.12658]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31911,\"INSEE_Comm\":\"60320\",\"nomCom\":\"Ivors\",\"NOM_COM\":\"IVORS\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01881,49.20033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31940,\"INSEE_Comm\":\"14327\",\"nomCom\":\"H�rouville-Saint-Clair\",\"NOM_COM\":\"HEROUVILLE-SAINT-CLAIR\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1493\",\"nomCan\":\"H�rouville-Saint-Clair\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":547,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.3312,49.20725]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31941,\"INSEE_Comm\":\"14385\",\"nomCom\":\"Magny-en-Bessin\",\"NOM_COM\":\"MAGNY-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.66648,49.31164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31942,\"INSEE_Comm\":\"14318\",\"nomCom\":\"Graye-sur-Mer\",\"NOM_COM\":\"GRAYE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48664,49.32938]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31943,\"INSEE_Comm\":\"14492\",\"nomCom\":\"Pennedepie\",\"NOM_COM\":\"PENNEDEPIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16375,49.4015]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31944,\"INSEE_Comm\":\"14299\",\"nomCom\":\"Genneville\",\"NOM_COM\":\"GENNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27371,49.35986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31945,\"INSEE_Comm\":\"76422\",\"nomCom\":\"Melleville\",\"NOM_COM\":\"MELLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47597,49.96067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31946,\"INSEE_Comm\":\"76542\",\"nomCom\":\"Routes\",\"NOM_COM\":\"ROUTES\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.74788,49.73003]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31947,\"INSEE_Comm\":\"80776\",\"nomCom\":\"Varennes\",\"NOM_COM\":\"VARENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51879,50.04552]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31948,\"INSEE_Comm\":\"60401\",\"nomCom\":\"Mesnil-Th�ribus\",\"NOM_COM\":\"LEMESNIL-THERIBUS\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9913,49.30595]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31949,\"INSEE_Comm\":\"60528\",\"nomCom\":\"Reilly\",\"NOM_COM\":\"REILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85695,49.24078]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31950,\"INSEE_Comm\":\"80606\",\"nomCom\":\"Oisemont\",\"NOM_COM\":\"OISEMONT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76022,49.95513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31951,\"INSEE_Comm\":\"60566\",\"nomCom\":\"Saint-Arnoult\",\"NOM_COM\":\"SAINT-ARNOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80595,49.63607]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31952,\"INSEE_Comm\":\"60252\",\"nomCom\":\"Fournival\",\"NOM_COM\":\"FOURNIVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38161,49.46395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31953,\"INSEE_Comm\":\"60070\",\"nomCom\":\"Bienville\",\"NOM_COM\":\"BIENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6009\",\"nomCan\":\"Compi�gne-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82513,49.44787]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31954,\"INSEE_Comm\":\"60585\",\"nomCom\":\"Saint-Martin-aux-Bois\",\"NOM_COM\":\"SAINT-MARTIN-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55991,49.5246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31955,\"INSEE_Comm\":\"80673\",\"nomCom\":\"Riencourt\",\"NOM_COM\":\"RIENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02958,49.92048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31956,\"INSEE_Comm\":\"80334\",\"nomCom\":\"Fossemanant\",\"NOM_COM\":\"FOSSEMANANT\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19009,49.80212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31957,\"INSEE_Comm\":\"80704\",\"nomCom\":\"Saint-Gratien\",\"NOM_COM\":\"SAINT-GRATIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.40321,49.96516]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31959,\"INSEE_Comm\":\"60167\",\"nomCom\":\"Couloisy\",\"NOM_COM\":\"COULOISY\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02839,49.40038]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31975,\"INSEE_Comm\":\"80445\",\"nomCom\":\"Humbercourt\",\"NOM_COM\":\"HUMBERCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45742,50.20956]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":31995,\"INSEE_Comm\":\"95277\",\"nomCom\":\"Gonesse\",\"NOM_COM\":\"GONESSE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9513\",\"nomCan\":\"Gonesse\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":509,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45696,48.98651]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32000,\"INSEE_Comm\":\"76022\",\"nomCom\":\"Anquetierville\",\"NOM_COM\":\"ANQUETIERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63295,49.53632]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32001,\"INSEE_Comm\":\"76559\",\"nomCom\":\"Saint-Aubin-de-Cr�tot\",\"NOM_COM\":\"SAINT-AUBIN-DE-CRETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63052,49.57269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32002,\"INSEE_Comm\":\"76607\",\"nomCom\":\"Sainte-Marguerite-sur-Fauville\",\"NOM_COM\":\"SAINTE-MARGUERITE-SUR-FAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59573,49.6723]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32031,\"INSEE_Comm\":\"60207\",\"nomCom\":\"�m�ville\",\"NOM_COM\":\"EMEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02464,49.27977]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32039,\"INSEE_Comm\":\"28002\",\"nomCom\":\"Allaines-Mervilliers\",\"NOM_COM\":\"ALLAINES-MERVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82422,48.1924]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32053,\"INSEE_Comm\":\"61478\",\"nomCom\":\"Taillebois\",\"NOM_COM\":\"TAILLEBOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43073,48.80168]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32055,\"INSEE_Comm\":\"80654\",\"nomCom\":\"Quesnoy-le-Montant\",\"NOM_COM\":\"QUESNOY-LE-MONTANT\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68767,50.1063]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32056,\"INSEE_Comm\":\"78586\",\"nomCom\":\"Sartrouville\",\"NOM_COM\":\"SARTROUVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7823\",\"nomCan\":\"Sartrouville\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1411,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.17458,48.93961]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32062,\"INSEE_Comm\":\"80364\",\"nomCom\":\"Friaucourt\",\"NOM_COM\":\"FRIAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.47415,50.08732]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32063,\"INSEE_Comm\":\"80200\",\"nomCom\":\"Cocquerel\",\"NOM_COM\":\"COCQUEREL\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96023,50.05562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32064,\"INSEE_Comm\":\"80153\",\"nomCom\":\"Bus-l�s-Artois\",\"NOM_COM\":\"BUS-LES-ARTOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54068,50.10414]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32065,\"INSEE_Comm\":\"80198\",\"nomCom\":\"Clairy-Saulchoix\",\"NOM_COM\":\"CLAIRY-SAULCHOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.16788,49.8547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32080,\"INSEE_Comm\":\"95074\",\"nomCom\":\"Boisemont\",\"NOM_COM\":\"BOISEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"9539\",\"nomCan\":\"Hautil\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00384,49.01869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32094,\"INSEE_Comm\":\"60535\",\"nomCom\":\"Reuil-sur-Br�che\",\"NOM_COM\":\"REUIL-SUR-BRECHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22604,49.52158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32118,\"INSEE_Comm\":\"27176\",\"nomCom\":\"Coudray\",\"NOM_COM\":\"COUDRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49683,49.3433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32152,\"INSEE_Comm\":\"14082\",\"nomCom\":\"Boissi�re\",\"NOM_COM\":\"LABOISSIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"1449\",\"nomCan\":\"Lisieux3eCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13203,49.12991]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32156,\"INSEE_Comm\":\"76421\",\"nomCom\":\"M�lamare\",\"NOM_COM\":\"MELAMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43602,49.53976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32188,\"INSEE_Comm\":\"28314\",\"nomCom\":\"Ressuintes\",\"NOM_COM\":\"LESRESSUINTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92628,48.59529]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32210,\"INSEE_Comm\":\"28153\",\"nomCom\":\"Flacey\",\"NOM_COM\":\"FLACEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33294,48.15134]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32231,\"INSEE_Comm\":\"27440\",\"nomCom\":\"Notre-Dame-de-l'Isle\",\"NOM_COM\":\"NOTRE-DAME-DE-L'ISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44753,49.15597]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32239,\"INSEE_Comm\":\"27498\",\"nomCom\":\"Rouge-Perriers\",\"NOM_COM\":\"ROUGE-PERRIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83312,49.14609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32241,\"INSEE_Comm\":\"27148\",\"nomCom\":\"Chapelle-Gauthier\",\"NOM_COM\":\"LACHAPELLE-GAUTHIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46396,48.98514]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32245,\"INSEE_Comm\":\"27125\",\"nomCom\":\"Calleville\",\"NOM_COM\":\"CALLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75585,49.19041]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32246,\"INSEE_Comm\":\"14558\",\"nomCom\":\"Saint-Aubin-d'Arquenay\",\"NOM_COM\":\"SAINT-AUBIN-D'ARQUENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1448\",\"nomCan\":\"Ouistreham\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28387,49.261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32247,\"INSEE_Comm\":\"61440\",\"nomCom\":\"Saint-Ouen-sur-Iton\",\"NOM_COM\":\"SAINT-OUEN-SUR-ITON\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":54,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67064,48.73551]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32255,\"INSEE_Comm\":\"76575\",\"nomCom\":\"Saint-�tienne-du-Rouvray\",\"NOM_COM\":\"SAINT-ETIENNE-DU-ROUVRAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7693\",\"nomCan\":\"Saint-�tienne-du-Rouvray\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":614,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09047,49.38178]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32260,\"INSEE_Comm\":\"60089\",\"nomCom\":\"Boubiers\",\"NOM_COM\":\"BOUBIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87064,49.21662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32261,\"INSEE_Comm\":\"95127\",\"nomCom\":\"Cergy\",\"NOM_COM\":\"CERGY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9596\",\"nomCan\":\"Cergy\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2450,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05077,49.04002]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32262,\"INSEE_Comm\":\"61355\",\"nomCom\":\"Rouell�\",\"NOM_COM\":\"ROUELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6110\",\"nomCan\":\"Domfront\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73358,48.6052]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32263,\"INSEE_Comm\":\"61289\",\"nomCom\":\"Mont-Ormel\",\"NOM_COM\":\"MONT-ORMEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.15306,48.83583]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32264,\"INSEE_Comm\":\"14597\",\"nomCom\":\"Saint-Jean-le-Blanc\",\"NOM_COM\":\"SAINT-JEAN-LE-BLANC\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.65778,48.93915]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32265,\"INSEE_Comm\":\"61482\",\"nomCom\":\"Tess�-Froulay\",\"NOM_COM\":\"TESSE-FROULAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42893,48.53105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32266,\"INSEE_Comm\":\"61104\",\"nomCom\":\"Chaux\",\"NOM_COM\":\"LACHAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26716,48.60199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32286,\"INSEE_Comm\":\"14175\",\"nomCom\":\"Cond�-sur-Seulles\",\"NOM_COM\":\"CONDE-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64129,49.22099]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32297,\"INSEE_Comm\":\"95438\",\"nomCom\":\"Moussy\",\"NOM_COM\":\"MOUSSY\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90868,49.13499]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32298,\"INSEE_Comm\":\"95270\",\"nomCom\":\"Genainville\",\"NOM_COM\":\"GENAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75434,49.11677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32310,\"INSEE_Comm\":\"14228\",\"nomCom\":\"Douvres-la-D�livrande\",\"NOM_COM\":\"DOUVRES-LA-DELIVRANDE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":291,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39198,49.28977]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32327,\"INSEE_Comm\":\"14288\",\"nomCom\":\"Fresne-Camilly\",\"NOM_COM\":\"LEFRESNE-CAMILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48768,49.25614]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32328,\"INSEE_Comm\":\"14196\",\"nomCom\":\"Cr�pon\",\"NOM_COM\":\"CREPON\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.54566,49.31451]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32329,\"INSEE_Comm\":\"27388\",\"nomCom\":\"Marais-Vernier\",\"NOM_COM\":\"MARAIS-VERNIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.46432,49.43802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32330,\"INSEE_Comm\":\"76173\",\"nomCom\":\"Chauss�e\",\"NOM_COM\":\"LACHAUSSEE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":57,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11849,49.81847]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32331,\"INSEE_Comm\":\"76663\",\"nomCom\":\"Sassetot-le-Mauconduit\",\"NOM_COM\":\"SASSETOT-LE-MAUCONDUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52877,49.79936]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32332,\"INSEE_Comm\":\"76689\",\"nomCom\":\"Thi�treville\",\"NOM_COM\":\"THIETREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51816,49.71971]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32333,\"INSEE_Comm\":\"76671\",\"nomCom\":\"Sept-Meules\",\"NOM_COM\":\"SEPT-MEULES\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41986,49.94671]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32334,\"INSEE_Comm\":\"80593\",\"nomCom\":\"Neuville-l�s-Bray\",\"NOM_COM\":\"LANEUVILLE-LES-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.72201,49.9221]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32335,\"INSEE_Comm\":\"60277\",\"nomCom\":\"Goincourt\",\"NOM_COM\":\"GOINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6004\",\"nomCan\":\"Beauvais-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03317,49.42494]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32336,\"INSEE_Comm\":\"60113\",\"nomCom\":\"Bucamps\",\"NOM_COM\":\"BUCAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31662,49.5248]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32337,\"INSEE_Comm\":\"80297\",\"nomCom\":\"�tr�just\",\"NOM_COM\":\"ETREJUST\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88725,49.91179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32338,\"INSEE_Comm\":\"60526\",\"nomCom\":\"Ravenel\",\"NOM_COM\":\"RAVENEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49905,49.51438]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32339,\"INSEE_Comm\":\"60023\",\"nomCom\":\"Armancourt\",\"NOM_COM\":\"ARMANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6041\",\"nomCan\":\"Compi�gne-Sud-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.764,49.37083]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32340,\"INSEE_Comm\":\"60665\",\"nomCom\":\"Venette\",\"NOM_COM\":\"VENETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6041\",\"nomCan\":\"Compi�gne-Sud-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":106,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78337,49.41969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32341,\"INSEE_Comm\":\"80174\",\"nomCom\":\"Cardonnois\",\"NOM_COM\":\"LECARDONNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48309,49.63117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32342,\"INSEE_Comm\":\"60682\",\"nomCom\":\"Villers-Saint-Frambourg\",\"NOM_COM\":\"VILLERS-SAINT-FRAMBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63467,49.26073]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32343,\"INSEE_Comm\":\"60326\",\"nomCom\":\"Jonqui�res\",\"NOM_COM\":\"JONQUIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6041\",\"nomCan\":\"Compi�gne-Sud-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.73437,49.39937]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32344,\"INSEE_Comm\":\"60228\",\"nomCom\":\"Fay-les-�tangs\",\"NOM_COM\":\"FAY-LES-ETANGS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94487,49.24944]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32345,\"INSEE_Comm\":\"60280\",\"nomCom\":\"Gourchelles\",\"NOM_COM\":\"GOURCHELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.779,49.72648]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32365,\"INSEE_Comm\":\"76454\",\"nomCom\":\"Mortemer\",\"NOM_COM\":\"MORTEMER\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.54626,49.74442]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32396,\"INSEE_Comm\":\"27088\",\"nomCom\":\"Bosc-Renoult-en-Ouche\",\"NOM_COM\":\"BOSC-RENOULT-EN-OUCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2703\",\"nomCan\":\"Beaumesnil\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.71861,48.95407]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32397,\"INSEE_Comm\":\"27175\",\"nomCom\":\"Corny\",\"NOM_COM\":\"CORNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45743,49.28294]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32408,\"INSEE_Comm\":\"27160\",\"nomCom\":\"Civi�res\",\"NOM_COM\":\"CIVIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57881,49.17364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32417,\"INSEE_Comm\":\"80074\",\"nomCom\":\"Becquigny\",\"NOM_COM\":\"BECQUIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.6214,49.68894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32424,\"INSEE_Comm\":\"80652\",\"nomCom\":\"Quesnel\",\"NOM_COM\":\"LEQUESNEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62386,49.782]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32430,\"INSEE_Comm\":\"14348\",\"nomCom\":\"Juvigny-sur-Seulles\",\"NOM_COM\":\"JUVIGNY-SUR-SEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60264,49.15566]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32437,\"INSEE_Comm\":\"60623\",\"nomCom\":\"Songeons\",\"NOM_COM\":\"SONGEONS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85253,49.56264]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32444,\"INSEE_Comm\":\"28370\",\"nomCom\":\"Saumeray\",\"NOM_COM\":\"SAUMERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31885,48.25159]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32445,\"INSEE_Comm\":\"28157\",\"nomCom\":\"Fontenay-sur-Conie\",\"NOM_COM\":\"FONTENAY-SUR-CONIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6824,48.16566]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32446,\"INSEE_Comm\":\"95660\",\"nomCom\":\"Villaines-sous-Bois\",\"NOM_COM\":\"VILLAINES-SOUS-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35664,49.07537]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32447,\"INSEE_Comm\":\"95428\",\"nomCom\":\"Montmorency\",\"NOM_COM\":\"MONTMORENCY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9518\",\"nomCan\":\"Montmorency\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":554,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3212,48.99186]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32448,\"INSEE_Comm\":\"78366\",\"nomCom\":\"Mareil-le-Guyon\",\"NOM_COM\":\"MAREIL-LE-GUYON\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85149,48.79109]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32449,\"INSEE_Comm\":\"14379\",\"nomCom\":\"Longvillers\",\"NOM_COM\":\"LONGVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64472,49.04608]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32454,\"INSEE_Comm\":\"80733\",\"nomCom\":\"Senlis-le-Sec\",\"NOM_COM\":\"SENLIS-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57772,50.02746]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32456,\"INSEE_Comm\":\"80821\",\"nomCom\":\"Warlus\",\"NOM_COM\":\"WARLUS\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95655,49.91751]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32457,\"INSEE_Comm\":\"80764\",\"nomCom\":\"Toeufles\",\"NOM_COM\":\"TOEUFLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71193,50.06244]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32458,\"INSEE_Comm\":\"60283\",\"nomCom\":\"Gouy-les-Groseillers\",\"NOM_COM\":\"GOUY-LES-GROSEILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21714,49.69538]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32459,\"INSEE_Comm\":\"80717\",\"nomCom\":\"Saint-Sauflieu\",\"NOM_COM\":\"SAINT-SAUFLIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":63,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25299,49.78539]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32460,\"INSEE_Comm\":\"80555\",\"nomCom\":\"Monchy-Lagache\",\"NOM_COM\":\"MONCHY-LAGACHE\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04314,49.85064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32461,\"INSEE_Comm\":\"80502\",\"nomCom\":\"Maison-Roland\",\"NOM_COM\":\"MAISON-ROLAND\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02616,50.12836]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32462,\"INSEE_Comm\":\"80140\",\"nomCom\":\"Br�villers\",\"NOM_COM\":\"BREVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38099,50.2155]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32463,\"INSEE_Comm\":\"14253\",\"nomCom\":\"Estry\",\"NOM_COM\":\"ESTRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.73024,48.90158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32487,\"INSEE_Comm\":\"14686\",\"nomCom\":\"Theil-Bocage\",\"NOM_COM\":\"LETHEIL-BOCAGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1436\",\"nomCan\":\"Vassy\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.70909,48.88212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32493,\"INSEE_Comm\":\"76528\",\"nomCom\":\"Rieux\",\"NOM_COM\":\"RIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58207,49.92388]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32549,\"INSEE_Comm\":\"28227\",\"nomCom\":\"Maintenon\",\"NOM_COM\":\"MAINTENON\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":134,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5841,48.58388]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32560,\"INSEE_Comm\":\"14540\",\"nomCom\":\"Rocques\",\"NOM_COM\":\"ROCQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"1421\",\"nomCan\":\"Lisieux1erCanton\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24942,49.16869]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32562,\"INSEE_Comm\":\"28110\",\"nomCom\":\"Coudray\",\"NOM_COM\":\"LECOUDRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2825\",\"nomCan\":\"Chartres-Sud-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":657,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50281,48.41901]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32563,\"INSEE_Comm\":\"28225\",\"nomCom\":\"Magny\",\"NOM_COM\":\"MAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":47,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.2702,48.34452]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32572,\"INSEE_Comm\":\"78302\",\"nomCom\":\"Hauteville\",\"NOM_COM\":\"LAHAUTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.62739,48.70489]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32575,\"INSEE_Comm\":\"61322\",\"nomCom\":\"Parfondeval\",\"NOM_COM\":\"PARFONDEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6128\",\"nomCan\":\"Pervench�res\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50606,48.48009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32588,\"INSEE_Comm\":\"28368\",\"nomCom\":\"Saucelle\",\"NOM_COM\":\"LASAUCELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02634,48.6291]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32589,\"INSEE_Comm\":\"27154\",\"nomCom\":\"Chavigny-Bailleul\",\"NOM_COM\":\"CHAVIGNY-BAILLEUL\",\"Statut\":\"Communesimple\",\"idCan\":\"2732\",\"nomCan\":\"Saint-Andr�-de-l'Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19622,48.88024]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32592,\"INSEE_Comm\":\"95584\",\"nomCom\":\"Santeuil\",\"NOM_COM\":\"SANTEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.95813,49.1295]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32600,\"INSEE_Comm\":\"28250\",\"nomCom\":\"M�zi�res-au-Perche\",\"NOM_COM\":\"MEZIERES-AU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27119,48.25033]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32601,\"INSEE_Comm\":\"60632\",\"nomCom\":\"Thiescourt\",\"NOM_COM\":\"THIESCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86659,49.5596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32611,\"INSEE_Comm\":\"78057\",\"nomCom\":\"Bennecourt\",\"NOM_COM\":\"BENNECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57232,49.048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32624,\"INSEE_Comm\":\"28029\",\"nomCom\":\"Bazoches-les-Hautes\",\"NOM_COM\":\"BAZOCHES-LES-HAUTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82026,48.15992]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32625,\"INSEE_Comm\":\"27197\",\"nomCom\":\"Dampsmesnil\",\"NOM_COM\":\"DAMPSMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6504,49.1669]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32627,\"INSEE_Comm\":\"14429\",\"nomCom\":\"Meulles\",\"NOM_COM\":\"MEULLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31823,48.97259]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32629,\"INSEE_Comm\":\"27239\",\"nomCom\":\"Ferri�res-Saint-Hilaire\",\"NOM_COM\":\"FERRIERES-SAINT-HILAIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57015,49.0283]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32653,\"INSEE_Comm\":\"78597\",\"nomCom\":\"Soindres\",\"NOM_COM\":\"SOINDRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67168,48.95354]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32654,\"INSEE_Comm\":\"61267\",\"nomCom\":\"M�nil-Hermei\",\"NOM_COM\":\"MENIL-HERMEI\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.31853,48.82581]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32666,\"INSEE_Comm\":\"61076\",\"nomCom\":\"Cercueil\",\"NOM_COM\":\"LECERCUEIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.01,48.59396]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32675,\"INSEE_Comm\":\"78397\",\"nomCom\":\"Mesnil-Saint-Denis\",\"NOM_COM\":\"LEMESNIL-SAINT-DENIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":127,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.96614,48.74022]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32678,\"INSEE_Comm\":\"14121\",\"nomCom\":\"Cahagnolles\",\"NOM_COM\":\"CAHAGNOLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"1402\",\"nomCan\":\"Balleroy\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.77619,49.16336]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32695,\"INSEE_Comm\":\"76174\",\"nomCom\":\"Cideville\",\"NOM_COM\":\"CIDEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88836,49.61178]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32696,\"INSEE_Comm\":\"27638\",\"nomCom\":\"Thuit-Signol\",\"NOM_COM\":\"LETHUIT-SIGNOL\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":139,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.93918,49.2569]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32697,\"INSEE_Comm\":\"76123\",\"nomCom\":\"Bosc-Gu�rard-Saint-Adrien\",\"NOM_COM\":\"BOSC-GUERARD-SAINT-ADRIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12523,49.54118]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32698,\"INSEE_Comm\":\"80367\",\"nomCom\":\"Frise\",\"NOM_COM\":\"FRISE\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8143,49.94009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32699,\"INSEE_Comm\":\"80313\",\"nomCom\":\"Flaucourt\",\"NOM_COM\":\"FLAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.86789,49.91743]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32700,\"INSEE_Comm\":\"80513\",\"nomCom\":\"Maricourt\",\"NOM_COM\":\"MARICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78478,49.98083]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32701,\"INSEE_Comm\":\"80073\",\"nomCom\":\"B�cordel-B�court\",\"NOM_COM\":\"BECORDEL-BECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68706,49.99668]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32702,\"INSEE_Comm\":\"80706\",\"nomCom\":\"Saint-L�ger-l�s-Domart\",\"NOM_COM\":\"SAINT-LEGER-LES-DOMART\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":103,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1403,50.05591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32703,\"INSEE_Comm\":\"60149\",\"nomCom\":\"Chevri�res\",\"NOM_COM\":\"CHEVRIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":58,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67966,49.34609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32704,\"INSEE_Comm\":\"60337\",\"nomCom\":\"Lachelle\",\"NOM_COM\":\"LACHELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74686,49.43437]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32705,\"INSEE_Comm\":\"60125\",\"nomCom\":\"Canly\",\"NOM_COM\":\"CANLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6014\",\"nomCan\":\"Estr�es-Saint-Denis\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69938,49.38897]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32706,\"INSEE_Comm\":\"60515\",\"nomCom\":\"Pronleroy\",\"NOM_COM\":\"PRONLEROY\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53949,49.46819]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32707,\"INSEE_Comm\":\"60636\",\"nomCom\":\"Thourotte\",\"NOM_COM\":\"THOUROTTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.88118,49.47929]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32708,\"INSEE_Comm\":\"60329\",\"nomCom\":\"Laberli�re\",\"NOM_COM\":\"LABERLIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.76305,49.57523]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32709,\"INSEE_Comm\":\"60085\",\"nomCom\":\"Bonvillers\",\"NOM_COM\":\"BONVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.35207,49.58551]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32710,\"INSEE_Comm\":\"80453\",\"nomCom\":\"Laboissi�re-en-Santerre\",\"NOM_COM\":\"LABOISSIERE-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.66756,49.65886]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32711,\"INSEE_Comm\":\"60062\",\"nomCom\":\"Berlancourt\",\"NOM_COM\":\"BERLANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.08371,49.67859]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32741,\"INSEE_Comm\":\"76563\",\"nomCom\":\"Saint-Aubin-Routot\",\"NOM_COM\":\"SAINT-AUBIN-ROUTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":69,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31882,49.52241]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32742,\"INSEE_Comm\":\"76117\",\"nomCom\":\"Bordeaux-Saint-Clair\",\"NOM_COM\":\"BORDEAUX-SAINT-CLAIR\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.24224,49.6976]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32743,\"INSEE_Comm\":\"76134\",\"nomCom\":\"Bourville\",\"NOM_COM\":\"BOURVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82373,49.79581]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32747,\"INSEE_Comm\":\"28210\",\"nomCom\":\"Levesville-la-Chenard\",\"NOM_COM\":\"LEVESVILLE-LA-CHENARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83081,48.30261]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32748,\"INSEE_Comm\":\"28249\",\"nomCom\":\"M�voisins\",\"NOM_COM\":\"MEVOISINS\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.599,48.55279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32749,\"INSEE_Comm\":\"28089\",\"nomCom\":\"Ch�teauneuf-en-Thymerais\",\"NOM_COM\":\"CHATEAUNEUF-EN-THYMERAIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2810\",\"nomCan\":\"Ch�teauneuf-en-Thymerais\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":121,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23775,48.58913]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32755,\"INSEE_Comm\":\"27490\",\"nomCom\":\"Richeville\",\"NOM_COM\":\"RICHEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53785,49.25797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32769,\"INSEE_Comm\":\"27563\",\"nomCom\":\"Saint-Mards-de-Blacarville\",\"NOM_COM\":\"SAINT-MARDS-DE-BLACARVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50856,49.37685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32770,\"INSEE_Comm\":\"27645\",\"nomCom\":\"Tocqueville\",\"NOM_COM\":\"TOCQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61345,49.40884]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32773,\"INSEE_Comm\":\"27353\",\"nomCom\":\"Irreville\",\"NOM_COM\":\"IRREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19967,49.09849]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32774,\"INSEE_Comm\":\"27666\",\"nomCom\":\"Vacherie\",\"NOM_COM\":\"LAVACHERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13658,49.12367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32801,\"INSEE_Comm\":\"61177\",\"nomCom\":\"Fr�nes\",\"NOM_COM\":\"FRENES\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.6827,48.77346]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32803,\"INSEE_Comm\":\"61240\",\"nomCom\":\"Mac�\",\"NOM_COM\":\"MACE\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13687,48.64767]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32829,\"INSEE_Comm\":\"28051\",\"nomCom\":\"Bonneval\",\"NOM_COM\":\"BONNEVAL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2804\",\"nomCan\":\"Bonneval\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":297,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38533,48.18122]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32849,\"INSEE_Comm\":\"61382\",\"nomCom\":\"Saint-Denis-sur-Sarthon\",\"NOM_COM\":\"SAINT-DENIS-SUR-SARTHON\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.03725,48.45793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32875,\"INSEE_Comm\":\"76464\",\"nomCom\":\"Neuville-Chant-d'Oisel\",\"NOM_COM\":\"LANEUVILLE-CHANT-D'OISEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":168,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24983,49.36921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32882,\"INSEE_Comm\":\"28362\",\"nomCom\":\"Saint-Victor-de-Buthon\",\"NOM_COM\":\"SAINT-VICTOR-DE-BUTHON\",\"Statut\":\"Communesimple\",\"idCan\":\"2817\",\"nomCan\":\"Loupe\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97928,48.40843]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32894,\"INSEE_Comm\":\"61458\",\"nomCom\":\"Saint-Victor-de-R�no\",\"NOM_COM\":\"SAINT-VICTOR-DE-RENO\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68998,48.50166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32944,\"INSEE_Comm\":\"14085\",\"nomCom\":\"Bonneville-la-Louvet\",\"NOM_COM\":\"BONNEVILLE-LA-LOUVET\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.34197,49.27309]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32962,\"INSEE_Comm\":\"76202\",\"nomCom\":\"Croixdalle\",\"NOM_COM\":\"CROIXDALLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36928,49.80273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32982,\"INSEE_Comm\":\"61224\",\"nomCom\":\"Larr�\",\"NOM_COM\":\"LARRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6138\",\"nomCan\":\"Alen�on3eCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16696,48.49331]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32983,\"INSEE_Comm\":\"61014\",\"nomCom\":\"Aunou-le-Faucon\",\"NOM_COM\":\"AUNOU-LE-FAUCON\",\"Statut\":\"Communesimple\",\"idCan\":\"6103\",\"nomCan\":\"Argentan-Est\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.05536,48.71947]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":32987,\"INSEE_Comm\":\"76297\",\"nomCom\":\"Gancourt-Saint-�tienne\",\"NOM_COM\":\"GANCOURT-SAINT-ETIENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7102,49.54509]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33008,\"INSEE_Comm\":\"60009\",\"nomCom\":\"Allonne\",\"NOM_COM\":\"ALLONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6004\",\"nomCan\":\"Beauvais-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":123,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11891,49.39649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33019,\"INSEE_Comm\":\"61456\",\"nomCom\":\"Saint-Sulpice-sur-Risle\",\"NOM_COM\":\"SAINT-SULPICE-SUR-RISLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67147,48.77634]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33030,\"INSEE_Comm\":\"14322\",\"nomCom\":\"Gu�ron\",\"NOM_COM\":\"GUERON\",\"Statut\":\"Communesimple\",\"idCan\":\"1403\",\"nomCan\":\"Bayeux\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.70978,49.24753]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33032,\"INSEE_Comm\":\"27485\",\"nomCom\":\"Quillebeuf-sur-Seine\",\"NOM_COM\":\"QUILLEBEUF-SUR-SEINE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50173,49.47001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33034,\"INSEE_Comm\":\"80223\",\"nomCom\":\"Cr�mery\",\"NOM_COM\":\"CREMERY\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82399,49.74321]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33043,\"INSEE_Comm\":\"60518\",\"nomCom\":\"Puits-la-Vall�e\",\"NOM_COM\":\"PUITS-LA-VALLEE\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19004,49.58364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33047,\"INSEE_Comm\":\"80388\",\"nomCom\":\"Gr�bault-Mesnil\",\"NOM_COM\":\"GREBAULT-MESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8029\",\"nomCan\":\"Moyenneville\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72233,50.02431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33074,\"INSEE_Comm\":\"14576\",\"nomCom\":\"Sainte-Foy-de-Montgommery\",\"NOM_COM\":\"SAINTE-FOY-DE-MONTGOMMERY\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.16363,48.95871]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33079,\"INSEE_Comm\":\"27435\",\"nomCom\":\"No�-Poulain\",\"NOM_COM\":\"LANOE-POULAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51957,49.27067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33091,\"INSEE_Comm\":\"60554\",\"nomCom\":\"Rouvres-en-Multien\",\"NOM_COM\":\"ROUVRES-EN-MULTIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02219,49.1064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33092,\"INSEE_Comm\":\"28114\",\"nomCom\":\"Courbehaye\",\"NOM_COM\":\"COURBEHAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6074,48.14877]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33093,\"INSEE_Comm\":\"28028\",\"nomCom\":\"Bazoches-en-Dunois\",\"NOM_COM\":\"BAZOCHES-EN-DUNOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57159,48.09455]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33101,\"INSEE_Comm\":\"27371\",\"nomCom\":\"Livet-sur-Authou\",\"NOM_COM\":\"LIVET-SUR-AUTHOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65474,49.22885]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33115,\"INSEE_Comm\":\"80107\",\"nomCom\":\"Blangy-Tronville\",\"NOM_COM\":\"BLANGY-TRONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4304,49.86954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33119,\"INSEE_Comm\":\"80807\",\"nomCom\":\"Ville-sur-Ancre\",\"NOM_COM\":\"VILLE-SUR-ANCRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.61358,49.95433]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33121,\"INSEE_Comm\":\"80114\",\"nomCom\":\"Bosquel\",\"NOM_COM\":\"BOSQUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21307,49.73721]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33175,\"INSEE_Comm\":\"14677\",\"nomCom\":\"Soulangy\",\"NOM_COM\":\"SOULANGY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.214,48.94048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33193,\"INSEE_Comm\":\"61429\",\"nomCom\":\"Saint-Maurice-l�s-Charencey\",\"NOM_COM\":\"SAINT-MAURICE-LES-CHARENCEY\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75303,48.63907]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33196,\"INSEE_Comm\":\"27335\",\"nomCom\":\"Heudreville-sur-Eure\",\"NOM_COM\":\"HEUDREVILLE-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18871,49.13208]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33203,\"INSEE_Comm\":\"95253\",\"nomCom\":\"Fr�mainville\",\"NOM_COM\":\"FREMAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86962,49.06629]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33269,\"INSEE_Comm\":\"27114\",\"nomCom\":\"Breuilpont\",\"NOM_COM\":\"BREUILPONT\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43949,48.96493]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33278,\"INSEE_Comm\":\"76602\",\"nomCom\":\"Saint-Maclou-de-Folleville\",\"NOM_COM\":\"SAINT-MACLOU-DE-FOLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09161,49.67594]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33282,\"INSEE_Comm\":\"80754\",\"nomCom\":\"Thieulloy-l'Abbaye\",\"NOM_COM\":\"THIEULLOY-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94419,49.82026]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33297,\"INSEE_Comm\":\"14014\",\"nomCom\":\"Anguerny\",\"NOM_COM\":\"ANGUERNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39639,49.26531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33314,\"INSEE_Comm\":\"95120\",\"nomCom\":\"Butry-sur-Oise\",\"NOM_COM\":\"BUTRY-SUR-OISE\",\"Statut\":\"Communesimple\",\"idCan\":\"9534\",\"nomCan\":\"Vall�e-du-Sausseron\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":132,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19184,49.08391]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33315,\"INSEE_Comm\":\"78133\",\"nomCom\":\"Chambourcy\",\"NOM_COM\":\"CHAMBOURCY\",\"Statut\":\"Communesimple\",\"idCan\":\"7821\",\"nomCan\":\"Saint-Germain-en-Laye-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":265,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03322,48.89606]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33316,\"INSEE_Comm\":\"95298\",\"nomCom\":\"Haravilliers\",\"NOM_COM\":\"HARAVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03681,49.17556]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33318,\"INSEE_Comm\":\"14688\",\"nomCom\":\"Thi�ville\",\"NOM_COM\":\"THIEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04424,49.03672]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33319,\"INSEE_Comm\":\"61114\",\"nomCom\":\"Commeaux\",\"NOM_COM\":\"COMMEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6139\",\"nomCan\":\"Argentan-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.09871,48.78846]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33321,\"INSEE_Comm\":\"14433\",\"nomCom\":\"Mittois\",\"NOM_COM\":\"MITTOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1429\",\"nomCan\":\"Saint-Pierre-sur-Dives\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03288,49.00568]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33322,\"INSEE_Comm\":\"14359\",\"nomCom\":\"L�caude\",\"NOM_COM\":\"LECAUDE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08464,49.10385]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33353,\"INSEE_Comm\":\"60170\",\"nomCom\":\"Courteuil\",\"NOM_COM\":\"COURTEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.5444,49.20653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33355,\"INSEE_Comm\":\"60046\",\"nomCom\":\"Bargny\",\"NOM_COM\":\"BARGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.95818,49.1776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33370,\"INSEE_Comm\":\"14044\",\"nomCom\":\"Basly\",\"NOM_COM\":\"BASLY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":118,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.42536,49.27655]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33371,\"INSEE_Comm\":\"14709\",\"nomCom\":\"Tracy-sur-Mer\",\"NOM_COM\":\"TRACY-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.64463,49.33116]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33372,\"INSEE_Comm\":\"76356\",\"nomCom\":\"Hermanville\",\"NOM_COM\":\"HERMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.98732,49.82059]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33373,\"INSEE_Comm\":\"27058\",\"nomCom\":\"Berni�res-sur-Seine\",\"NOM_COM\":\"BERNIERES-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.34666,49.23562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33374,\"INSEE_Comm\":\"76069\",\"nomCom\":\"Belbeuf\",\"NOM_COM\":\"BELBEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13853,49.38513]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33375,\"INSEE_Comm\":\"27648\",\"nomCom\":\"Tostes\",\"NOM_COM\":\"TOSTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.11515,49.26189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33376,\"INSEE_Comm\":\"80275\",\"nomCom\":\"�quancourt\",\"NOM_COM\":\"EQUANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01429,50.03535]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33377,\"INSEE_Comm\":\"60405\",\"nomCom\":\"Moliens\",\"NOM_COM\":\"MOLIENS\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8153,49.67132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33378,\"INSEE_Comm\":\"60235\",\"nomCom\":\"Flavacourt\",\"NOM_COM\":\"FLAVACOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.82887,49.34599]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33379,\"INSEE_Comm\":\"60314\",\"nomCom\":\"H�tomesnil\",\"NOM_COM\":\"HETOMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04103,49.63183]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33380,\"INSEE_Comm\":\"80259\",\"nomCom\":\"Dromesnil\",\"NOM_COM\":\"DROMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86918,49.87739]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33381,\"INSEE_Comm\":\"60690\",\"nomCom\":\"Villers-sur-Trie\",\"NOM_COM\":\"VILLERS-SUR-TRIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.81701,49.31392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33382,\"INSEE_Comm\":\"60516\",\"nomCom\":\"Puiseux-en-Bray\",\"NOM_COM\":\"PUISEUX-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77854,49.41068]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33383,\"INSEE_Comm\":\"60490\",\"nomCom\":\"Pierrefitte-en-Beauvaisis\",\"NOM_COM\":\"PIERREFITTE-EN-BEAUVAISIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6040\",\"nomCan\":\"Beauvais-Nord-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97937,49.47362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33384,\"INSEE_Comm\":\"60030\",\"nomCom\":\"Auteuil\",\"NOM_COM\":\"AUTEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09242,49.34501]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33385,\"INSEE_Comm\":\"80381\",\"nomCom\":\"Gorges\",\"NOM_COM\":\"GORGES\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18311,50.10744]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33386,\"INSEE_Comm\":\"60386\",\"nomCom\":\"Marqu�glise\",\"NOM_COM\":\"MARQUEGLISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":55,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74854,49.51562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33387,\"INSEE_Comm\":\"60423\",\"nomCom\":\"Montmacq\",\"NOM_COM\":\"MONTMACQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6032\",\"nomCan\":\"Rib�court-Dreslincourt\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91489,49.48167]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33388,\"INSEE_Comm\":\"60022\",\"nomCom\":\"Apremont\",\"NOM_COM\":\"APREMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6036\",\"nomCan\":\"Chantilly\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.51364,49.22865]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33389,\"INSEE_Comm\":\"60404\",\"nomCom\":\"Mogneville\",\"NOM_COM\":\"MOGNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":50,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47329,49.31266]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33390,\"INSEE_Comm\":\"60354\",\"nomCom\":\"Laverri�re\",\"NOM_COM\":\"LAVERRIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01098,49.68631]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33391,\"INSEE_Comm\":\"80562\",\"nomCom\":\"Montigny-sur-l'Hallue\",\"NOM_COM\":\"MONTIGNY-SUR-L'HALLUE\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.42236,49.98547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33401,\"INSEE_Comm\":\"80763\",\"nomCom\":\"Titre\",\"NOM_COM\":\"LETITRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80179,50.18825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33422,\"INSEE_Comm\":\"76138\",\"nomCom\":\"Bracquetuit\",\"NOM_COM\":\"BRACQUETUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16974,49.66467]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33423,\"INSEE_Comm\":\"76228\",\"nomCom\":\"Ectot-l�s-Baons\",\"NOM_COM\":\"ECTOT-LES-BAONS\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80877,49.64399]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33427,\"INSEE_Comm\":\"28073\",\"nomCom\":\"Champseru\",\"NOM_COM\":\"CHAMPSERU\",\"Statut\":\"Communesimple\",\"idCan\":\"2802\",\"nomCan\":\"Auneau\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.64595,48.49103]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33428,\"INSEE_Comm\":\"78403\",\"nomCom\":\"M�zy-sur-Seine\",\"NOM_COM\":\"MEZY-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":73,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8692,49.00329]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33429,\"INSEE_Comm\":\"95306\",\"nomCom\":\"Herblay\",\"NOM_COM\":\"HERBLAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9531\",\"nomCan\":\"Herblay\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1025,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.14968,49.0007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33433,\"INSEE_Comm\":\"27264\",\"nomCom\":\"Fours-en-Vexin\",\"NOM_COM\":\"FOURS-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60866,49.18741]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33434,\"INSEE_Comm\":\"60211\",\"nomCom\":\"�ragny-sur-Epte\",\"NOM_COM\":\"ERAGNY-SUR-EPTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78713,49.31202]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33435,\"INSEE_Comm\":\"27434\",\"nomCom\":\"Noards\",\"NOM_COM\":\"NOARDS\",\"Statut\":\"Communesimple\",\"idCan\":\"2733\",\"nomCan\":\"Saint-Georges-du-Vi�vre\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50971,49.21051]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33451,\"INSEE_Comm\":\"27526\",\"nomCom\":\"Sainte-Croix-sur-Aizier\",\"NOM_COM\":\"SAINTE-CROIX-SUR-AIZIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2729\",\"nomCan\":\"Quillebeuf-sur-Seine\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63374,49.41463]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33452,\"INSEE_Comm\":\"27258\",\"nomCom\":\"Fort-Moville\",\"NOM_COM\":\"FORT-MOVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40171,49.32896]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33456,\"INSEE_Comm\":\"27250\",\"nomCom\":\"Fontaine-Heudebourg\",\"NOM_COM\":\"FONTAINE-HEUDEBOURG\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22209,49.13418]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33463,\"INSEE_Comm\":\"78227\",\"nomCom\":\"�vecquemont\",\"NOM_COM\":\"EVECQUEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7814\",\"nomCan\":\"Meulan-en-Yvelines\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94219,49.01722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33471,\"INSEE_Comm\":\"14393\",\"nomCom\":\"Maizet\",\"NOM_COM\":\"MAIZET\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.45417,49.07544]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33472,\"INSEE_Comm\":\"14211\",\"nomCom\":\"Culey-le-Patry\",\"NOM_COM\":\"CULEY-LE-PATRY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53119,48.95636]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33484,\"INSEE_Comm\":\"95574\",\"nomCom\":\"Saint-Prix\",\"NOM_COM\":\"SAINT-PRIX\",\"Statut\":\"Communesimple\",\"idCan\":\"9520\",\"nomCan\":\"Saint-Leu-la-For�t\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":185,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27015,49.02082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33487,\"INSEE_Comm\":\"78196\",\"nomCom\":\"Davron\",\"NOM_COM\":\"DAVRON\",\"Statut\":\"Communesimple\",\"idCan\":\"7817\",\"nomCan\":\"Poissy-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94749,48.86364]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33488,\"INSEE_Comm\":\"78143\",\"nomCom\":\"Ch�teaufort\",\"NOM_COM\":\"CHATEAUFORT\",\"Statut\":\"Communesimple\",\"idCan\":\"7829\",\"nomCan\":\"Versailles-Sud\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09561,48.7389]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33489,\"INSEE_Comm\":\"14073\",\"nomCom\":\"Bigne\",\"NOM_COM\":\"LABIGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.71804,49.01121]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33494,\"INSEE_Comm\":\"80786\",\"nomCom\":\"Velennes\",\"NOM_COM\":\"VELENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.09877,49.76722]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33500,\"INSEE_Comm\":\"80587\",\"nomCom\":\"Neslette\",\"NOM_COM\":\"NESLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66464,49.92734]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33501,\"INSEE_Comm\":\"80050\",\"nomCom\":\"Bacouel-sur-Selle\",\"NOM_COM\":\"BACOUEL-SUR-SELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19407,49.83034]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33502,\"INSEE_Comm\":\"80128\",\"nomCom\":\"Bouvincourt-en-Vermandois\",\"NOM_COM\":\"BOUVINCOURT-EN-VERMANDOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04416,49.8909]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33511,\"INSEE_Comm\":\"80035\",\"nomCom\":\"Aubercourt\",\"NOM_COM\":\"AUBERCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.54727,49.83839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33529,\"INSEE_Comm\":\"28359\",\"nomCom\":\"Saint-R�my-sur-Avre\",\"NOM_COM\":\"SAINT-REMY-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":167,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23714,48.7492]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33550,\"INSEE_Comm\":\"76434\",\"nomCom\":\"Mesnil-Raoul\",\"NOM_COM\":\"MESNIL-RAOUL\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.27512,49.3972]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33571,\"INSEE_Comm\":\"27369\",\"nomCom\":\"Lilly\",\"NOM_COM\":\"LILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2722\",\"nomCan\":\"Lyons-la-For�t\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56678,49.40294]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33592,\"INSEE_Comm\":\"14188\",\"nomCom\":\"Coulvain\",\"NOM_COM\":\"COULVAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.72136,49.05362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33602,\"INSEE_Comm\":\"28272\",\"nomCom\":\"Mottereau\",\"NOM_COM\":\"MOTTEREAU\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16884,48.25189]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33614,\"INSEE_Comm\":\"80718\",\"nomCom\":\"Saint-Sauveur\",\"NOM_COM\":\"SAINT-SAUVEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"8008\",\"nomCan\":\"Amiens2e(Nord-Ouest)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":40,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21118,49.94754]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33628,\"INSEE_Comm\":\"61498\",\"nomCom\":\"Vaunoise\",\"NOM_COM\":\"VAUNOISE\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48677,48.34715]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33630,\"INSEE_Comm\":\"61090\",\"nomCom\":\"Champs\",\"NOM_COM\":\"CHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55745,48.58676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33643,\"INSEE_Comm\":\"61323\",\"nomCom\":\"Pas-Saint-l'Homer\",\"NOM_COM\":\"LEPAS-SAINT-L'HOMER\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.92818,48.49352]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33652,\"INSEE_Comm\":\"28422\",\"nomCom\":\"Voves\",\"NOM_COM\":\"VOVES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":111,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63111,48.26986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33675,\"INSEE_Comm\":\"14601\",\"nomCom\":\"Saint-Julien-sur-Calonne\",\"NOM_COM\":\"SAINT-JULIEN-SUR-CALONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.23051,49.28756]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33681,\"INSEE_Comm\":\"60494\",\"nomCom\":\"Plailly\",\"NOM_COM\":\"PLAILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57772,49.11131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33702,\"INSEE_Comm\":\"14571\",\"nomCom\":\"Saint-Denis-de-Mailloc\",\"NOM_COM\":\"SAINT-DENIS-DE-MAILLOC\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.31413,49.09828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33704,\"INSEE_Comm\":\"78300\",\"nomCom\":\"Hargeville\",\"NOM_COM\":\"HARGEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74615,48.89522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33705,\"INSEE_Comm\":\"14116\",\"nomCom\":\"B�-sur-Rouvres\",\"NOM_COM\":\"LEBU-SUR-ROUVRES\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17672,49.03245]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33709,\"INSEE_Comm\":\"14615\",\"nomCom\":\"Sainte-Marguerite-des-Loges\",\"NOM_COM\":\"SAINTE-MARGUERITE-DES-LOGES\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19952,49.01607]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33710,\"INSEE_Comm\":\"61086\",\"nomCom\":\"Champeaux\",\"NOM_COM\":\"LESCHAMPEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6136\",\"nomCan\":\"Vimoutiers\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13425,48.88839]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33711,\"INSEE_Comm\":\"61152\",\"nomCom\":\"�corches\",\"NOM_COM\":\"ECORCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"6135\",\"nomCan\":\"Trun\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.08609,48.87368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33727,\"INSEE_Comm\":\"61039\",\"nomCom\":\"Belli�re\",\"NOM_COM\":\"LABELLIERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.01791,48.62129]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33734,\"INSEE_Comm\":\"14302\",\"nomCom\":\"Glanville\",\"NOM_COM\":\"GLANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.07502,49.27677]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33749,\"INSEE_Comm\":\"27545\",\"nomCom\":\"Saint-Germain-de-Pasquier\",\"NOM_COM\":\"SAINT-GERMAIN-DE-PASQUIER\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00241,49.2419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33752,\"INSEE_Comm\":\"78624\",\"nomCom\":\"Triel-sur-Seine\",\"NOM_COM\":\"TRIEL-SUR-SEINE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7825\",\"nomCan\":\"Triel-sur-Seine\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":180,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00877,48.97802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33761,\"INSEE_Comm\":\"14384\",\"nomCom\":\"Luc-sur-Mer\",\"NOM_COM\":\"LUC-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":167,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35765,49.30837]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33762,\"INSEE_Comm\":\"14059\",\"nomCom\":\"Benerville-sur-Mer\",\"NOM_COM\":\"BENERVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.04787,49.33905]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33786,\"INSEE_Comm\":\"14739\",\"nomCom\":\"Ver-sur-Mer\",\"NOM_COM\":\"VER-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":99,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52878,49.33374]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33787,\"INSEE_Comm\":\"14238\",\"nomCom\":\"Englesqueville-en-Auge\",\"NOM_COM\":\"ENGLESQUEVILLE-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.14967,49.33176]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33788,\"INSEE_Comm\":\"76506\",\"nomCom\":\"Pommer�val\",\"NOM_COM\":\"POMMEREVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30505,49.7349]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33789,\"INSEE_Comm\":\"76721\",\"nomCom\":\"Varneville-Bretteville\",\"NOM_COM\":\"VARNEVILLE-BRETTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04295,49.65454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33790,\"INSEE_Comm\":\"76219\",\"nomCom\":\"Doudeville\",\"NOM_COM\":\"DOUDEVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":90,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.78673,49.73048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33791,\"INSEE_Comm\":\"27105\",\"nomCom\":\"Bourgtheroulde-Infreville\",\"NOM_COM\":\"BOURGTHEROULDE-INFREVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":76,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87652,49.29955]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33792,\"INSEE_Comm\":\"76005\",\"nomCom\":\"Amfreville-la-Mi-Voie\",\"NOM_COM\":\"AMFREVILLE-LA-MI-VOIE\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":233,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12527,49.40548]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33793,\"INSEE_Comm\":\"76448\",\"nomCom\":\"Montmain\",\"NOM_COM\":\"MONTMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":107,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.24537,49.40954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33794,\"INSEE_Comm\":\"80219\",\"nomCom\":\"Courcelles-sous-Thoix\",\"NOM_COM\":\"COURCELLES-SOUS-THOIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07601,49.72111]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33795,\"INSEE_Comm\":\"80538\",\"nomCom\":\"Mesnil-en-Arrouaise\",\"NOM_COM\":\"MESNIL-EN-ARROUAISE\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.9502,50.03643]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33796,\"INSEE_Comm\":\"80139\",\"nomCom\":\"Breuil\",\"NOM_COM\":\"BREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94903,49.73691]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33797,\"INSEE_Comm\":\"60484\",\"nomCom\":\"Oudeuil\",\"NOM_COM\":\"OUDEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02723,49.54915]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33798,\"INSEE_Comm\":\"60613\",\"nomCom\":\"Senots\",\"NOM_COM\":\"SENOTS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.01335,49.26076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33799,\"INSEE_Comm\":\"80355\",\"nomCom\":\"Fresneville\",\"NOM_COM\":\"FRESNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8032\",\"nomCan\":\"Oisemont\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8314,49.88754]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33800,\"INSEE_Comm\":\"60376\",\"nomCom\":\"Maisoncelle-Saint-Pierre\",\"NOM_COM\":\"MAISONCELLE-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12122,49.51544]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33801,\"INSEE_Comm\":\"60077\",\"nomCom\":\"Blicourt\",\"NOM_COM\":\"BLICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6022\",\"nomCan\":\"Marseille-en-Beauvaisis\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.0605,49.56082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33802,\"INSEE_Comm\":\"60364\",\"nomCom\":\"Lieuvillers\",\"NOM_COM\":\"LIEUVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48954,49.4744]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33803,\"INSEE_Comm\":\"80011\",\"nomCom\":\"Ailly-sur-Somme\",\"NOM_COM\":\"AILLY-SUR-SOMME\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":89,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.18609,49.91349]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33804,\"INSEE_Comm\":\"80279\",\"nomCom\":\"Ercheu\",\"NOM_COM\":\"ERCHEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94654,49.70101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33812,\"INSEE_Comm\":\"80700\",\"nomCom\":\"Saint-Blimont\",\"NOM_COM\":\"SAINT-BLIMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56513,50.12066]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33813,\"INSEE_Comm\":\"80503\",\"nomCom\":\"Maizicourt\",\"NOM_COM\":\"MAIZICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8012\",\"nomCan\":\"Bernaville\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12689,50.19584]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33818,\"INSEE_Comm\":\"76053\",\"nomCom\":\"Baillolet\",\"NOM_COM\":\"BAILLOLET\",\"Statut\":\"Communesimple\",\"idCan\":\"7634\",\"nomCan\":\"Londini�res\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4314,49.78963]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33820,\"INSEE_Comm\":\"78126\",\"nomCom\":\"Celle-Saint-Cloud\",\"NOM_COM\":\"LACELLE-SAINT-CLOUD\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7803\",\"nomCan\":\"Celle-Saint-Cloud\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.13519,48.84695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33840,\"INSEE_Comm\":\"76702\",\"nomCom\":\"Touffreville-la-Corbeline\",\"NOM_COM\":\"TOUFFREVILLE-LA-CORBELINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7655\",\"nomCan\":\"Yvetot\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.76405,49.58459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33841,\"INSEE_Comm\":\"76237\",\"nomCom\":\"�pinay-sur-Duclair\",\"NOM_COM\":\"EPINAY-SUR-DUCLAIR\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83586,49.52536]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33842,\"INSEE_Comm\":\"76196\",\"nomCom\":\"Criquetot-l'Esneval\",\"NOM_COM\":\"CRIQUETOT-L'ESNEVAL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":201,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.26726,49.6369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33843,\"INSEE_Comm\":\"76483\",\"nomCom\":\"Oherville\",\"NOM_COM\":\"OHERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68985,49.72712]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33851,\"INSEE_Comm\":\"28382\",\"nomCom\":\"Terminiers\",\"NOM_COM\":\"TERMINIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":34,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72961,48.08965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33852,\"INSEE_Comm\":\"28058\",\"nomCom\":\"Br�champs\",\"NOM_COM\":\"BRECHAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52098,48.67276]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33853,\"INSEE_Comm\":\"78335\",\"nomCom\":\"Limay\",\"NOM_COM\":\"LIMAY\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":669,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73988,48.99464]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33859,\"INSEE_Comm\":\"27625\",\"nomCom\":\"Suzay\",\"NOM_COM\":\"SUZAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":36,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.51349,49.27011]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33860,\"INSEE_Comm\":\"27420\",\"nomCom\":\"Mouflaines\",\"NOM_COM\":\"MOUFLAINES\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55531,49.24454]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33861,\"INSEE_Comm\":\"27534\",\"nomCom\":\"Saint-Didier-des-Bois\",\"NOM_COM\":\"SAINT-DIDIER-DES-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03799,49.24215]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33869,\"INSEE_Comm\":\"27363\",\"nomCom\":\"Landin\",\"NOM_COM\":\"LELANDIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2730\",\"nomCan\":\"Routot\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8036,49.40676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33873,\"INSEE_Comm\":\"27147\",\"nomCom\":\"Chapelle-du-Bois-des-Faulx\",\"NOM_COM\":\"LACHAPELLE-DU-BOIS-DES-FAULX\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":44,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17181,49.10805]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33874,\"INSEE_Comm\":\"27624\",\"nomCom\":\"Surville\",\"NOM_COM\":\"SURVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10241,49.20131]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33884,\"INSEE_Comm\":\"28320\",\"nomCom\":\"Rouvray-Saint-Florentin\",\"NOM_COM\":\"ROUVRAY-SAINT-FLORENTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56271,48.25698]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33892,\"INSEE_Comm\":\"14656\",\"nomCom\":\"Saint-R�my\",\"NOM_COM\":\"SAINT-REMY\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.49007,48.93986]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33895,\"INSEE_Comm\":\"14080\",\"nomCom\":\"B�\",\"NOM_COM\":\"LEBO\",\"Statut\":\"Communesimple\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.44166,48.90636]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33896,\"INSEE_Comm\":\"60123\",\"nomCom\":\"Campremy\",\"NOM_COM\":\"CAMPREMY\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.32702,49.56377]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33907,\"INSEE_Comm\":\"78407\",\"nomCom\":\"Mittainville\",\"NOM_COM\":\"MITTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7818\",\"nomCan\":\"Rambouillet\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.63565,48.66323]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33919,\"INSEE_Comm\":\"95023\",\"nomCom\":\"Arronville\",\"NOM_COM\":\"ARRONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1135,49.17406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33921,\"INSEE_Comm\":\"76075\",\"nomCom\":\"Belmesnil\",\"NOM_COM\":\"BELMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.05015,49.76835]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":33974,\"INSEE_Comm\":\"14592\",\"nomCom\":\"Sainte-Honorine-du-Fay\",\"NOM_COM\":\"SAINTE-HONORINE-DU-FAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":78,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.49109,49.07007]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34002,\"INSEE_Comm\":\"28350\",\"nomCom\":\"Saint-Luperce\",\"NOM_COM\":\"SAINT-LUPERCE\",\"Statut\":\"Communesimple\",\"idCan\":\"2812\",\"nomCan\":\"Courville-sur-Eure\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30303,48.43726]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34010,\"INSEE_Comm\":\"61348\",\"nomCom\":\"R�veillon\",\"NOM_COM\":\"REVEILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56262,48.48067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34011,\"INSEE_Comm\":\"61318\",\"nomCom\":\"Origny-le-Butin\",\"NOM_COM\":\"ORIGNY-LE-BUTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.47274,48.37872]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34030,\"INSEE_Comm\":\"27644\",\"nomCom\":\"Tilly\",\"NOM_COM\":\"TILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5287,49.14233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34049,\"INSEE_Comm\":\"78089\",\"nomCom\":\"Bonni�res-sur-Seine\",\"NOM_COM\":\"BONNIERES-SUR-SEINE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7802\",\"nomCan\":\"Bonni�res-sur-Seine\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":128,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57059,49.02001]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34055,\"INSEE_Comm\":\"61378\",\"nomCom\":\"Sainte-Croix-sur-Orne\",\"NOM_COM\":\"SAINTE-CROIX-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29223,48.77394]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34062,\"INSEE_Comm\":\"27590\",\"nomCom\":\"Saint-Pierre-de-Cerni�res\",\"NOM_COM\":\"SAINT-PIERRE-DE-CERNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"2710\",\"nomCan\":\"Broglie\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51953,48.93093]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34066,\"INSEE_Comm\":\"27425\",\"nomCom\":\"Nassandres\",\"NOM_COM\":\"NASSANDRES\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73931,49.13399]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34085,\"INSEE_Comm\":\"95303\",\"nomCom\":\"Heaulme\",\"NOM_COM\":\"LEHEAULME\",\"Statut\":\"Communesimple\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00046,49.16695]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34086,\"INSEE_Comm\":\"14720\",\"nomCom\":\"Ussy\",\"NOM_COM\":\"USSY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.29,48.94585]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34087,\"INSEE_Comm\":\"14284\",\"nomCom\":\"Fourneaux-le-Val\",\"NOM_COM\":\"FOURNEAUX-LE-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26983,48.86255]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34088,\"INSEE_Comm\":\"61200\",\"nomCom\":\"Haleine\",\"NOM_COM\":\"HALEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43737,48.51716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34089,\"INSEE_Comm\":\"61164\",\"nomCom\":\"Ferri�re-B�chet\",\"NOM_COM\":\"LAFERRIERE-BECHET\",\"Statut\":\"Communesimple\",\"idCan\":\"6131\",\"nomCan\":\"S�es\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.0709,48.5754]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34118,\"INSEE_Comm\":\"78522\",\"nomCom\":\"Rochefort-en-Yvelines\",\"NOM_COM\":\"ROCHEFORT-EN-YVELINES\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.97978,48.59243]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34119,\"INSEE_Comm\":\"60421\",\"nomCom\":\"Mont-l'�v�que\",\"NOM_COM\":\"MONT-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.63424,49.19064]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34120,\"INSEE_Comm\":\"60527\",\"nomCom\":\"R�ez-Fosse-Martin\",\"NOM_COM\":\"REEZ-FOSSE-MARTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6005\",\"nomCan\":\"Betz\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.92363,49.09128]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34128,\"INSEE_Comm\":\"27322\",\"nomCom\":\"Haye-Malherbe\",\"NOM_COM\":\"LAHAYE-MALHERBE\",\"Statut\":\"Communesimple\",\"idCan\":\"2739\",\"nomCan\":\"Louviers-Sud\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06626,49.23723]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34131,\"INSEE_Comm\":\"76301\",\"nomCom\":\"Glicourt\",\"NOM_COM\":\"GLICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.23366,49.93684]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34142,\"INSEE_Comm\":\"14524\",\"nomCom\":\"Putot-en-Auge\",\"NOM_COM\":\"PUTOT-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.06635,49.21242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34143,\"INSEE_Comm\":\"14652\",\"nomCom\":\"Saint-Pierre-du-Mont\",\"NOM_COM\":\"SAINT-PIERRE-DU-MONT\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.97546,49.38093]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34144,\"INSEE_Comm\":\"27146\",\"nomCom\":\"Chapelle-Bayvel\",\"NOM_COM\":\"LACHAPELLE-BAYVEL\",\"Statut\":\"Communesimple\",\"idCan\":\"2712\",\"nomCan\":\"Cormeilles\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.40631,49.28082]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34145,\"INSEE_Comm\":\"76153\",\"nomCom\":\"Calleville-les-Deux-�glises\",\"NOM_COM\":\"CALLEVILLE-LES-DEUX-EGLISES\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02151,49.70362]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34146,\"INSEE_Comm\":\"76446\",\"nomCom\":\"Montigny\",\"NOM_COM\":\"MONTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7666\",\"nomCan\":\"Notre-Dame-de-Bondeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99761,49.45868]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34147,\"INSEE_Comm\":\"76486\",\"nomCom\":\"Orival\",\"NOM_COM\":\"ORIVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7617\",\"nomCan\":\"Elbeuf\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9961,49.31863]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34148,\"INSEE_Comm\":\"76597\",\"nomCom\":\"Saint-Laurent-en-Caux\",\"NOM_COM\":\"SAINT-LAURENT-EN-CAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88702,49.7431]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34149,\"INSEE_Comm\":\"60080\",\"nomCom\":\"Boissy-le-Bois\",\"NOM_COM\":\"BOISSY-LE-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94122,49.27884]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34150,\"INSEE_Comm\":\"60676\",\"nomCom\":\"Ville\",\"NOM_COM\":\"VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":33,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.93398,49.55683]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34151,\"INSEE_Comm\":\"60456\",\"nomCom\":\"Neuville-Roy\",\"NOM_COM\":\"LANEUVILLE-ROY\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58214,49.47934]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34152,\"INSEE_Comm\":\"60449\",\"nomCom\":\"Neufvy-sur-Aronde\",\"NOM_COM\":\"NEUFVY-SUR-ARONDE\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.65381,49.50914]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34153,\"INSEE_Comm\":\"80690\",\"nomCom\":\"Rumigny\",\"NOM_COM\":\"RUMIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.28325,49.80496]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34156,\"INSEE_Comm\":\"60519\",\"nomCom\":\"Quesmy\",\"NOM_COM\":\"QUESMY\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.05497,49.63208]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34169,\"INSEE_Comm\":\"27299\",\"nomCom\":\"Gravigny\",\"NOM_COM\":\"GRAVIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":165,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16416,49.04926]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34187,\"INSEE_Comm\":\"76105\",\"nomCom\":\"Bocasse\",\"NOM_COM\":\"LEBOCASSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07002,49.60908]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34188,\"INSEE_Comm\":\"76193\",\"nomCom\":\"Crique\",\"NOM_COM\":\"LACRIQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7604\",\"nomCan\":\"Bellencombre\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20351,49.69273]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34189,\"INSEE_Comm\":\"76480\",\"nomCom\":\"Ocqueville\",\"NOM_COM\":\"OCQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.68576,49.79798]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34190,\"INSEE_Comm\":\"76609\",\"nomCom\":\"Sainte-Marie-au-Bosc\",\"NOM_COM\":\"SAINTE-MARIE-AU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.20477,49.6653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34191,\"INSEE_Comm\":\"76670\",\"nomCom\":\"Senneville-sur-F�camp\",\"NOM_COM\":\"SENNEVILLE-SUR-FECAMP\",\"Statut\":\"Communesimple\",\"idCan\":\"7621\",\"nomCan\":\"F�camp\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.41522,49.77222]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34192,\"INSEE_Comm\":\"76750\",\"nomCom\":\"Yainville\",\"NOM_COM\":\"YAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.82743,49.45696]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34193,\"INSEE_Comm\":\"76014\",\"nomCom\":\"Angerville-l'Orcher\",\"NOM_COM\":\"ANGERVILLE-L'ORCHER\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.29262,49.5867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34197,\"INSEE_Comm\":\"28042\",\"nomCom\":\"Bleury\",\"NOM_COM\":\"BLEURY\",\"Statut\":\"Communesimple\",\"idCan\":\"2818\",\"nomCan\":\"Maintenon\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.73894,48.51737]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34203,\"INSEE_Comm\":\"27199\",\"nomCom\":\"Dangu\",\"NOM_COM\":\"DANGU\",\"Statut\":\"Communesimple\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68832,49.26144]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34204,\"INSEE_Comm\":\"27104\",\"nomCom\":\"Bourg-Beaudouin\",\"NOM_COM\":\"BOURG-BEAUDOUIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.30432,49.38406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34218,\"INSEE_Comm\":\"27476\",\"nomCom\":\"Pr�aux\",\"NOM_COM\":\"LESPREAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48053,49.32813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34219,\"INSEE_Comm\":\"27244\",\"nomCom\":\"Flancourt-Catelon\",\"NOM_COM\":\"FLANCOURT-CATELON\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75616,49.33195]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34220,\"INSEE_Comm\":\"27637\",\"nomCom\":\"Thuit-H�bert\",\"NOM_COM\":\"THUIT-HEBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8306,49.31821]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34224,\"INSEE_Comm\":\"27276\",\"nomCom\":\"Gamaches-en-Vexin\",\"NOM_COM\":\"GAMACHES-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2715\",\"nomCan\":\"�tr�pagny\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.61612,49.26648]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34244,\"INSEE_Comm\":\"78070\",\"nomCom\":\"Boinville-en-Mantois\",\"NOM_COM\":\"BOINVILLE-EN-MANTOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.74928,48.92848]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34252,\"INSEE_Comm\":\"14689\",\"nomCom\":\"Thury-Harcourt\",\"NOM_COM\":\"THURY-HARCOURT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1431\",\"nomCan\":\"Thury-Harcourt\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":93,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.48505,48.98649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34263,\"INSEE_Comm\":\"80533\",\"nomCom\":\"Mers-les-Bains\",\"NOM_COM\":\"MERS-LES-BAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":106,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.40478,50.07067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34266,\"INSEE_Comm\":\"80572\",\"nomCom\":\"Morlancourt\",\"NOM_COM\":\"MORLANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64733,49.94808]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34267,\"INSEE_Comm\":\"80028\",\"nomCom\":\"Arqu�ves\",\"NOM_COM\":\"ARQUEVES\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.47756,50.07285]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34268,\"INSEE_Comm\":\"80822\",\"nomCom\":\"Warsy\",\"NOM_COM\":\"WARSY\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.64397,49.70579]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34271,\"INSEE_Comm\":\"80146\",\"nomCom\":\"Brutelles\",\"NOM_COM\":\"BRUTELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8040\",\"nomCan\":\"Saint-Valery-sur-Somme\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52032,50.13691]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34272,\"INSEE_Comm\":\"80537\",\"nomCom\":\"Mesnil-Domqueur\",\"NOM_COM\":\"MESNIL-DOMQUEUR\",\"Statut\":\"Communesimple\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06308,50.13369]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34348,\"INSEE_Comm\":\"28199\",\"nomCom\":\"Janville\",\"NOM_COM\":\"JANVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":69,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89039,48.20081]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34371,\"INSEE_Comm\":\"27466\",\"nomCom\":\"Plessis-Sainte-Opportune\",\"NOM_COM\":\"LEPLESSIS-SAINTE-OPPORTUNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.85595,49.07016]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34378,\"INSEE_Comm\":\"95259\",\"nomCom\":\"Gadancourt\",\"NOM_COM\":\"GADANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85866,49.09896]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34379,\"INSEE_Comm\":\"76399\",\"nomCom\":\"Lucy\",\"NOM_COM\":\"LUCY\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4477,49.77228]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34387,\"INSEE_Comm\":\"61368\",\"nomCom\":\"Saint-Aubin-des-Grois\",\"NOM_COM\":\"SAINT-AUBIN-DES-GROIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.65532,48.35206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34391,\"INSEE_Comm\":\"95370\",\"nomCom\":\"Marines\",\"NOM_COM\":\"MARINES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9517\",\"nomCan\":\"Marines\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":169,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.98338,49.14805]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34393,\"INSEE_Comm\":\"61105\",\"nomCom\":\"Chemilli\",\"NOM_COM\":\"CHEMILLI\",\"Statut\":\"Communesimple\",\"idCan\":\"6106\",\"nomCan\":\"Bell�me\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.45174,48.35987]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34400,\"INSEE_Comm\":\"27399\",\"nomCom\":\"Mercey\",\"NOM_COM\":\"MERCEY\",\"Statut\":\"Communesimple\",\"idCan\":\"2740\",\"nomCan\":\"Vernon-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39867,49.08256]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34403,\"INSEE_Comm\":\"27376\",\"nomCom\":\"Louye\",\"NOM_COM\":\"LOUYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.31914,48.7969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34404,\"INSEE_Comm\":\"27033\",\"nomCom\":\"Bacquepuis\",\"NOM_COM\":\"BACQUEPUIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04557,49.09085]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34411,\"INSEE_Comm\":\"14596\",\"nomCom\":\"Saint-Jean-des-Essartiers\",\"NOM_COM\":\"SAINT-JEAN-DES-ESSARTIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.81825,49.04825]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34412,\"INSEE_Comm\":\"28063\",\"nomCom\":\"Brunelles\",\"NOM_COM\":\"BRUNELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2820\",\"nomCan\":\"Nogent-le-Rotrou\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91259,48.32519]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34440,\"INSEE_Comm\":\"61100\",\"nomCom\":\"Chapelle-Viel\",\"NOM_COM\":\"LACHAPELLE-VIEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61233,48.70975]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34456,\"INSEE_Comm\":\"14258\",\"nomCom\":\"Falaise\",\"NOM_COM\":\"FALAISE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"1498\",\"nomCan\":\"Falaise\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":428,\"ratioInvFd\":13},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.1934,48.89578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34459,\"INSEE_Comm\":\"61131\",\"nomCom\":\"Courm�nil\",\"NOM_COM\":\"COURMENIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6112\",\"nomCan\":\"Exmes\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.22878,48.77146]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34517,\"INSEE_Comm\":\"14301\",\"nomCom\":\"Giberville\",\"NOM_COM\":\"GIBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1434\",\"nomCan\":\"Troarn\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":254,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.28539,49.17811]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34523,\"INSEE_Comm\":\"76179\",\"nomCom\":\"Cl�res\",\"NOM_COM\":\"CLERES\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7611\",\"nomCan\":\"Cl�res\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":91,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10311,49.59123]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34524,\"INSEE_Comm\":\"76039\",\"nomCom\":\"Authieux-sur-le-Port-Saint-Ouen\",\"NOM_COM\":\"LESAUTHIEUX-SUR-LE-PORT-SAINT-OUEN\",\"Statut\":\"Communesimple\",\"idCan\":\"7607\",\"nomCan\":\"Boos\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":53,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.13285,49.33866]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34525,\"INSEE_Comm\":\"80785\",\"nomCom\":\"Vecquemont\",\"NOM_COM\":\"VECQUEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.44061,49.89067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34526,\"INSEE_Comm\":\"80192\",\"nomCom\":\"Chipilly\",\"NOM_COM\":\"CHIPILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.65156,49.91793]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34527,\"INSEE_Comm\":\"60510\",\"nomCom\":\"Porcheux\",\"NOM_COM\":\"PORCHEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.92396,49.33652]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34528,\"INSEE_Comm\":\"27284\",\"nomCom\":\"Gisors\",\"NOM_COM\":\"GISORS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"2720\",\"nomCan\":\"Gisors\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":522,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76877,49.27867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34529,\"INSEE_Comm\":\"76218\",\"nomCom\":\"Doudeauville\",\"NOM_COM\":\"DOUDEAUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.69897,49.56622]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34530,\"INSEE_Comm\":\"60188\",\"nomCom\":\"Cuise-la-Motte\",\"NOM_COM\":\"CUISE-LA-MOTTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":82,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.99967,49.38596]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34531,\"INSEE_Comm\":\"60394\",\"nomCom\":\"M�n�villers\",\"NOM_COM\":\"MENEVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60418,49.5212]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34532,\"INSEE_Comm\":\"60137\",\"nomCom\":\"Cernoy\",\"NOM_COM\":\"CERNOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53929,49.44264]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34533,\"INSEE_Comm\":\"60036\",\"nomCom\":\"Avrigny\",\"NOM_COM\":\"AVRIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.57707,49.38906]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34534,\"INSEE_Comm\":\"60657\",\"nomCom\":\"Vauchelles\",\"NOM_COM\":\"VAUCHELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.96793,49.58584]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34535,\"INSEE_Comm\":\"60577\",\"nomCom\":\"Saint-Germer-de-Fly\",\"NOM_COM\":\"SAINT-GERMER-DE-FLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":65,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.78192,49.44161]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34536,\"INSEE_Comm\":\"76035\",\"nomCom\":\"Aumale\",\"NOM_COM\":\"AUMALE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7602\",\"nomCan\":\"Aumale\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.75496,49.76945]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34567,\"INSEE_Comm\":\"76382\",\"nomCom\":\"Lanquetot\",\"NOM_COM\":\"LANQUETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53035,49.58342]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34568,\"INSEE_Comm\":\"76388\",\"nomCom\":\"Lintot\",\"NOM_COM\":\"LINTOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.56707,49.55937]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34569,\"INSEE_Comm\":\"76679\",\"nomCom\":\"Sommesnil\",\"NOM_COM\":\"SOMMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.67116,49.71067]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34570,\"INSEE_Comm\":\"76403\",\"nomCom\":\"Malleville-les-Gr�s\",\"NOM_COM\":\"MALLEVILLE-LES-GRES\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60607,49.8304]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34571,\"INSEE_Comm\":\"76755\",\"nomCom\":\"Ypreville-Biville\",\"NOM_COM\":\"YPREVILLE-BIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.53099,49.69446]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34577,\"INSEE_Comm\":\"28300\",\"nomCom\":\"Poinville\",\"NOM_COM\":\"POINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2816\",\"nomCan\":\"Janville\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.90041,48.1749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34592,\"INSEE_Comm\":\"27180\",\"nomCom\":\"Courcelles-sur-Seine\",\"NOM_COM\":\"COURCELLES-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":161,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.36613,49.18522]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34614,\"INSEE_Comm\":\"61307\",\"nomCom\":\"Neuville-sur-Touques\",\"NOM_COM\":\"NEUVILLE-SUR-TOUQUES\",\"Statut\":\"Communesimple\",\"idCan\":\"6116\",\"nomCan\":\"Gac�\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.28075,48.86232]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34615,\"INSEE_Comm\":\"78020\",\"nomCom\":\"Arnouville-l�s-Mantes\",\"NOM_COM\":\"ARNOUVILLE-LES-MANTES\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72044,48.91101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34616,\"INSEE_Comm\":\"78305\",\"nomCom\":\"Herbeville\",\"NOM_COM\":\"HERBEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7801\",\"nomCan\":\"Aubergenville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89021,48.9026]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34617,\"INSEE_Comm\":\"27423\",\"nomCom\":\"Muzy\",\"NOM_COM\":\"MUZY\",\"Statut\":\"Communesimple\",\"idCan\":\"2725\",\"nomCan\":\"Nonancourt\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.3257,48.77813]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34622,\"INSEE_Comm\":\"80800\",\"nomCom\":\"Villers-Campsart\",\"NOM_COM\":\"VILLERS-CAMPSART\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83538,49.86981]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34629,\"INSEE_Comm\":\"95176\",\"nomCom\":\"Cormeilles-en-Parisis\",\"NOM_COM\":\"CORMEILLES-EN-PARISIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9505\",\"nomCan\":\"Cormeilles-en-Parisis\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":964,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19921,48.96822]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34630,\"INSEE_Comm\":\"14438\",\"nomCom\":\"Mondrainville\",\"NOM_COM\":\"MONDRAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1432\",\"nomCan\":\"Tilly-sur-Seulles\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.5125,49.14196]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34633,\"INSEE_Comm\":\"78423\",\"nomCom\":\"Montigny-le-Bretonneux\",\"NOM_COM\":\"MONTIGNY-LE-BRETONNEUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7828\",\"nomCan\":\"Montigny-le-Bretonneux\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":944,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02952,48.77966]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34638,\"INSEE_Comm\":\"14129\",\"nomCom\":\"Campeaux\",\"NOM_COM\":\"CAMPEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"1404\",\"nomCan\":\"B�ny-Bocage\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.92601,48.95213]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34639,\"INSEE_Comm\":\"80604\",\"nomCom\":\"Offignies\",\"NOM_COM\":\"OFFIGNIES\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.85641,49.79441]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34641,\"INSEE_Comm\":\"80023\",\"nomCom\":\"Andechy\",\"NOM_COM\":\"ANDECHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70663,49.71473]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34642,\"INSEE_Comm\":\"80791\",\"nomCom\":\"Vers-sur-Selles\",\"NOM_COM\":\"VERS-SUR-SELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"8013\",\"nomCan\":\"Boves\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":29,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.22501,49.84234]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34645,\"INSEE_Comm\":\"80599\",\"nomCom\":\"Noyelles-en-Chauss�e\",\"NOM_COM\":\"NOYELLES-EN-CHAUSSEE\",\"Statut\":\"Communesimple\",\"idCan\":\"8019\",\"nomCan\":\"Cr�cy-en-Ponthieu\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9868,50.21127]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34647,\"INSEE_Comm\":\"80201\",\"nomCom\":\"Coigneux\",\"NOM_COM\":\"COIGNEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8003\",\"nomCan\":\"Acheux-en-Ami�nois\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55613,50.1301]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34721,\"INSEE_Comm\":\"78329\",\"nomCom\":\"Lainville-en-Vexin\",\"NOM_COM\":\"LAINVILLE-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"7810\",\"nomCan\":\"Limay\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.8169,49.06242]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34768,\"INSEE_Comm\":\"28258\",\"nomCom\":\"Montainville\",\"NOM_COM\":\"MONTAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.53432,48.27751]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34771,\"INSEE_Comm\":\"28296\",\"nomCom\":\"P�ronville\",\"NOM_COM\":\"PERONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2821\",\"nomCan\":\"Org�res-en-Beauce\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58243,48.05864]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34778,\"INSEE_Comm\":\"27447\",\"nomCom\":\"Orvaux\",\"NOM_COM\":\"ORVAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":28,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.02129,48.94125]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34784,\"INSEE_Comm\":\"27297\",\"nomCom\":\"Grandvilliers\",\"NOM_COM\":\"GRANDVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.07573,48.80838]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34789,\"INSEE_Comm\":\"27463\",\"nomCom\":\"Plasnes\",\"NOM_COM\":\"PLASNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":41,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.62476,49.13763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34790,\"INSEE_Comm\":\"27418\",\"nomCom\":\"Morsan\",\"NOM_COM\":\"MORSAN\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59751,49.17965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34791,\"INSEE_Comm\":\"27318\",\"nomCom\":\"Haye-de-Calleville\",\"NOM_COM\":\"LAHAYE-DE-CALLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2709\",\"nomCan\":\"Brionne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.77787,49.18752]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34792,\"INSEE_Comm\":\"61212\",\"nomCom\":\"Juvigny-sur-Orne\",\"NOM_COM\":\"JUVIGNY-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6103\",\"nomCan\":\"Argentan-Est\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.02358,48.72416]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34795,\"INSEE_Comm\":\"61218\",\"nomCom\":\"Lande-Patry\",\"NOM_COM\":\"LALANDE-PATRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.59815,48.75355]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34802,\"INSEE_Comm\":\"76265\",\"nomCom\":\"Flamets-Fr�tils\",\"NOM_COM\":\"FLAMETS-FRETILS\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.58281,49.72562]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34804,\"INSEE_Comm\":\"27254\",\"nomCom\":\"Fontaine-sous-Jouy\",\"NOM_COM\":\"FONTAINE-SOUS-JOUY\",\"Statut\":\"Communesimple\",\"idCan\":\"2737\",\"nomCan\":\"�vreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28056,49.06441]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34807,\"INSEE_Comm\":\"61129\",\"nomCom\":\"Courgeon\",\"NOM_COM\":\"COURGEON\",\"Statut\":\"Communesimple\",\"idCan\":\"6123\",\"nomCan\":\"Mortagne-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.61057,48.47926]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34809,\"INSEE_Comm\":\"95582\",\"nomCom\":\"Sannois\",\"NOM_COM\":\"SANNOIS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9522\",\"nomCan\":\"Sannois\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":488,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.25316,48.97181]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34815,\"INSEE_Comm\":\"76215\",\"nomCom\":\"Derchigny\",\"NOM_COM\":\"DERCHIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.19818,49.93697]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34841,\"INSEE_Comm\":\"60346\",\"nomCom\":\"Lamorlaye\",\"NOM_COM\":\"LAMORLAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"6036\",\"nomCan\":\"Chantilly\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":454,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41954,49.16036]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34864,\"INSEE_Comm\":\"14397\",\"nomCom\":\"Mandeville-en-Bessin\",\"NOM_COM\":\"MANDEVILLE-EN-BESSIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.86495,49.30696]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34865,\"INSEE_Comm\":\"14690\",\"nomCom\":\"Tierceville\",\"NOM_COM\":\"TIERCEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1428\",\"nomCan\":\"Ryes\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.52741,49.29845]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34866,\"INSEE_Comm\":\"80018\",\"nomCom\":\"Allenay\",\"NOM_COM\":\"ALLENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"8011\",\"nomCan\":\"Ault\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49294,50.08647]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34867,\"INSEE_Comm\":\"60195\",\"nomCom\":\"Delincourt\",\"NOM_COM\":\"DELINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83237,49.23963]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34868,\"INSEE_Comm\":\"60699\",\"nomCom\":\"Wambez\",\"NOM_COM\":\"WAMBEZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.84463,49.52226]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34869,\"INSEE_Comm\":\"60152\",\"nomCom\":\"Choisy-la-Victoire\",\"NOM_COM\":\"CHOISY-LA-VICTOIRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.59727,49.37759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34870,\"INSEE_Comm\":\"60391\",\"nomCom\":\"Maysel\",\"NOM_COM\":\"MAYSEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.36708,49.25194]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34871,\"INSEE_Comm\":\"60406\",\"nomCom\":\"Monceaux\",\"NOM_COM\":\"MONCEAUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.56618,49.32685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34872,\"INSEE_Comm\":\"80749\",\"nomCom\":\"Terramesnil\",\"NOM_COM\":\"TERRAMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38476,50.10138]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34873,\"INSEE_Comm\":\"80295\",\"nomCom\":\"�tinehem\",\"NOM_COM\":\"ETINEHEM\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.68803,49.93555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34874,\"INSEE_Comm\":\"60315\",\"nomCom\":\"Hodenc-en-Bray\",\"NOM_COM\":\"HODENC-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91022,49.47233]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34875,\"INSEE_Comm\":\"60219\",\"nomCom\":\"Escles-Saint-Pierre\",\"NOM_COM\":\"ESCLES-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.80313,49.74443]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34876,\"INSEE_Comm\":\"80205\",\"nomCom\":\"Cond�-Folie\",\"NOM_COM\":\"CONDE-FOLIE\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.02116,50.00367]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34877,\"INSEE_Comm\":\"60237\",\"nomCom\":\"Fl�chy\",\"NOM_COM\":\"FLECHY\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.23098,49.65894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34881,\"INSEE_Comm\":\"60507\",\"nomCom\":\"Pontoise-l�s-Noyon\",\"NOM_COM\":\"PONTOISE-LES-NOYON\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04752,49.54349]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34900,\"INSEE_Comm\":\"76244\",\"nomCom\":\"Esclavelles\",\"NOM_COM\":\"ESCLAVELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"7638\",\"nomCan\":\"Neufch�tel-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":26,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38571,49.70508]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34915,\"INSEE_Comm\":\"76357\",\"nomCom\":\"Hermeville\",\"NOM_COM\":\"HERMEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7612\",\"nomCan\":\"Criquetot-l'Esneval\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25975,49.59718]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34923,\"INSEE_Comm\":\"95651\",\"nomCom\":\"V�theuil\",\"NOM_COM\":\"VETHEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.70675,49.06199]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34935,\"INSEE_Comm\":\"27337\",\"nomCom\":\"Heuqueville\",\"NOM_COM\":\"HEUQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2702\",\"nomCan\":\"Andelys\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.32071,49.28721]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34936,\"INSEE_Comm\":\"27346\",\"nomCom\":\"Houville-en-Vexin\",\"NOM_COM\":\"HOUVILLE-EN-VEXIN\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35759,49.29996]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34966,\"INSEE_Comm\":\"14177\",\"nomCom\":\"Coquainvilliers\",\"NOM_COM\":\"COQUAINVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.19727,49.20244]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34968,\"INSEE_Comm\":\"78362\",\"nomCom\":\"Mantes-la-Ville\",\"NOM_COM\":\"MANTES-LA-VILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7833\",\"nomCan\":\"Mantes-la-Ville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":552,\"ratioInvFd\":4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71206,48.97479]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34969,\"INSEE_Comm\":\"28251\",\"nomCom\":\"M�zi�res-en-Drouais\",\"NOM_COM\":\"MEZIERES-EN-DROUAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":20,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44211,48.72547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34970,\"INSEE_Comm\":\"28415\",\"nomCom\":\"Villemeux-sur-Eure\",\"NOM_COM\":\"VILLEMEUX-SUR-EURE\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":74,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.45736,48.67106]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34974,\"INSEE_Comm\":\"14006\",\"nomCom\":\"Amay�-sur-Orne\",\"NOM_COM\":\"AMAYE-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":70,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43423,49.09112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34976,\"INSEE_Comm\":\"14446\",\"nomCom\":\"Montigny\",\"NOM_COM\":\"MONTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53448,49.04079]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34987,\"INSEE_Comm\":\"78576\",\"nomCom\":\"Saint-R�my-l'Honor�\",\"NOM_COM\":\"SAINT-REMY-L'HONORE\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87574,48.74875]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34993,\"INSEE_Comm\":\"80701\",\"nomCom\":\"Saint-Christ-Briost\",\"NOM_COM\":\"SAINT-CHRIST-BRIOST\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.92524,49.85446]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34995,\"INSEE_Comm\":\"80446\",\"nomCom\":\"Huppy\",\"NOM_COM\":\"HUPPY\",\"Statut\":\"Communesimple\",\"idCan\":\"8023\",\"nomCan\":\"Hallencourt\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76012,50.02406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":34996,\"INSEE_Comm\":\"80234\",\"nomCom\":\"Daours\",\"NOM_COM\":\"DAOURS\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":37,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43946,49.90375]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35003,\"INSEE_Comm\":\"78346\",\"nomCom\":\"Longnes\",\"NOM_COM\":\"LONGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"7808\",\"nomCan\":\"Houdan\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":62,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57947,48.92286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35013,\"INSEE_Comm\":\"27572\",\"nomCom\":\"Saint-Meslin-du-Bosc\",\"NOM_COM\":\"SAINT-MESLIN-DU-BOSC\",\"Statut\":\"Communesimple\",\"idCan\":\"2701\",\"nomCan\":\"Amfreville-la-Campagne\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.87861,49.21587]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35038,\"INSEE_Comm\":\"14737\",\"nomCom\":\"Versainville\",\"NOM_COM\":\"VERSAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1418\",\"nomCan\":\"Falaise-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.17153,48.91977]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35067,\"INSEE_Comm\":\"28192\",\"nomCom\":\"Happonvilliers\",\"NOM_COM\":\"HAPPONVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.10478,48.3299]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35075,\"INSEE_Comm\":\"28182\",\"nomCom\":\"Gohory\",\"NOM_COM\":\"GOHORY\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22367,48.16537]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35078,\"INSEE_Comm\":\"61372\",\"nomCom\":\"Saint-C�neri-le-G�rei\",\"NOM_COM\":\"SAINT-CENERI-LE-GEREI\",\"Statut\":\"Communesimple\",\"idCan\":\"6102\",\"nomCan\":\"Alen�on1erCanton\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.04004,48.38904]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35092,\"INSEE_Comm\":\"61448\",\"nomCom\":\"Saint-Pierre-la-Bruy�re\",\"NOM_COM\":\"SAINT-PIERRE-LA-BRUYERE\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79915,48.35901]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35104,\"INSEE_Comm\":\"61299\",\"nomCom\":\"Moussonvilliers\",\"NOM_COM\":\"MOUSSONVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79941,48.63866]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35105,\"INSEE_Comm\":\"61206\",\"nomCom\":\"H�me-Chamondot\",\"NOM_COM\":\"L'HOME-CHAMONDOT\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7357,48.60026]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35109,\"INSEE_Comm\":\"27172\",\"nomCom\":\"Corneuil\",\"NOM_COM\":\"CORNEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":42,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.14128,48.8844]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35122,\"INSEE_Comm\":\"28086\",\"nomCom\":\"Chassant\",\"NOM_COM\":\"CHASSANT\",\"Statut\":\"Communesimple\",\"idCan\":\"2823\",\"nomCan\":\"Thiron-Gardais\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.06749,48.29205]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35145,\"INSEE_Comm\":\"14477\",\"nomCom\":\"Ondefontaine\",\"NOM_COM\":\"ONDEFONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"1401\",\"nomCan\":\"Aunay-sur-Odon\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.68744,48.98834]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35151,\"INSEE_Comm\":\"27210\",\"nomCom\":\"�cardenville-la-Campagne\",\"NOM_COM\":\"ECARDENVILLE-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":33,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83477,49.12398]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35152,\"INSEE_Comm\":\"27608\",\"nomCom\":\"Saint-Victor-de-Chr�tienville\",\"NOM_COM\":\"SAINT-VICTOR-DE-CHRETIENVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2705\",\"nomCan\":\"Bernay-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.51349,49.06343]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35153,\"INSEE_Comm\":\"14518\",\"nomCom\":\"Pr�aux-Saint-S�bastien\",\"NOM_COM\":\"PREAUX-SAINT-SEBASTIEN\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30707,48.9933]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35160,\"INSEE_Comm\":\"61483\",\"nomCom\":\"Bagnoles-de-l'Orne\",\"NOM_COM\":\"BAGNOLES-DE-L'ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6117\",\"nomCan\":\"Juvigny-sous-Andaine\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":39,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.41951,48.55566]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35162,\"INSEE_Comm\":\"14412\",\"nomCom\":\"Mesnil-au-Grain\",\"NOM_COM\":\"LEMESNIL-AU-GRAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60602,49.04676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35169,\"INSEE_Comm\":\"78683\",\"nomCom\":\"Villiers-Saint-Fr�d�ric\",\"NOM_COM\":\"VILLIERS-SAINT-FREDERIC\",\"Statut\":\"Communesimple\",\"idCan\":\"7815\",\"nomCan\":\"Montfort-l'Amaury\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":108,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88251,48.82018]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35171,\"INSEE_Comm\":\"14189\",\"nomCom\":\"Coupesarte\",\"NOM_COM\":\"COUPESARTE\",\"Statut\":\"Communesimple\",\"idCan\":\"1424\",\"nomCan\":\"M�zidon-Canon\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.10385,49.05531]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35173,\"INSEE_Comm\":\"61375\",\"nomCom\":\"Saint-Christophe-le-Jajolet\",\"NOM_COM\":\"SAINT-CHRISTOPHE-LE-JAJOLET\",\"Statut\":\"Communesimple\",\"idCan\":\"6124\",\"nomCan\":\"Mortr�e\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.00188,48.65662]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35197,\"INSEE_Comm\":\"60666\",\"nomCom\":\"Ver-sur-Launette\",\"NOM_COM\":\"VER-SUR-LAUNETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.67274,49.10547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35200,\"INSEE_Comm\":\"14161\",\"nomCom\":\"Clarbec\",\"NOM_COM\":\"CLARBEC\",\"Statut\":\"Communesimple\",\"idCan\":\"1427\",\"nomCan\":\"Pont-l'�v�que\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13457,49.24117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35221,\"INSEE_Comm\":\"14499\",\"nomCom\":\"Petiville\",\"NOM_COM\":\"PETIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1447\",\"nomCan\":\"Cabourg\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":46,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.16846,49.24235]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35222,\"INSEE_Comm\":\"14079\",\"nomCom\":\"Blonville-sur-Mer\",\"NOM_COM\":\"BLONVILLE-SUR-MER\",\"Statut\":\"Communesimple\",\"idCan\":\"1435\",\"nomCan\":\"Trouville-sur-Mer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":86,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03227,49.3223]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35223,\"INSEE_Comm\":\"14298\",\"nomCom\":\"G�fosse-Fontenay\",\"NOM_COM\":\"GEFOSSE-FONTENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1420\",\"nomCan\":\"Isigny-sur-Mer\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.0844,49.36167]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35224,\"INSEE_Comm\":\"14203\",\"nomCom\":\"Cricqueville-en-Auge\",\"NOM_COM\":\"CRICQUEVILLE-EN-AUGE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07325,49.2371]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35225,\"INSEE_Comm\":\"76217\",\"nomCom\":\"Dieppe\",\"NOM_COM\":\"DIEPPE\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"7695\",\"nomCan\":\"Dieppe\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":726,\"ratioInvFd\":9},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08676,49.92219]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35226,\"INSEE_Comm\":\"76058\",\"nomCom\":\"Baromesnil\",\"NOM_COM\":\"BAROMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41262,49.98521]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35227,\"INSEE_Comm\":\"76435\",\"nomCom\":\"Mesnil-R�aume\",\"NOM_COM\":\"LEMESNIL-REAUME\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":65,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44086,49.97167]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35228,\"INSEE_Comm\":\"60397\",\"nomCom\":\"Mesnil-Conteville\",\"NOM_COM\":\"LEMESNIL-CONTEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06421,49.66784]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35229,\"INSEE_Comm\":\"80601\",\"nomCom\":\"Nurlu\",\"NOM_COM\":\"NURLU\",\"Statut\":\"Communesimple\",\"idCan\":\"8033\",\"nomCan\":\"P�ronne\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.01506,50.00392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35230,\"INSEE_Comm\":\"80402\",\"nomCom\":\"Guizancourt\",\"NOM_COM\":\"GUIZANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99794,49.73628]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35231,\"INSEE_Comm\":\"60108\",\"nomCom\":\"Briot\",\"NOM_COM\":\"BRIOT\",\"Statut\":\"Communesimple\",\"idCan\":\"6017\",\"nomCan\":\"Grandvilliers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91717,49.64133]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35232,\"INSEE_Comm\":\"60586\",\"nomCom\":\"Saint-Martin-le-Noeud\",\"NOM_COM\":\"SAINT-MARTIN-LE-NOEUD\",\"Statut\":\"Communesimple\",\"idCan\":\"6004\",\"nomCan\":\"Beauvais-Sud-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":48,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05938,49.39578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35233,\"INSEE_Comm\":\"60039\",\"nomCom\":\"Bacou�l\",\"NOM_COM\":\"BACOUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38267,49.62184]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35234,\"INSEE_Comm\":\"60498\",\"nomCom\":\"Plessier-sur-Saint-Just\",\"NOM_COM\":\"LEPLESSIER-SUR-SAINT-JUST\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45964,49.50814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35235,\"INSEE_Comm\":\"60464\",\"nomCom\":\"Nointel\",\"NOM_COM\":\"NOINTEL\",\"Statut\":\"Communesimple\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48747,49.38286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35236,\"INSEE_Comm\":\"60402\",\"nomCom\":\"Meux\",\"NOM_COM\":\"LEMEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"6041\",\"nomCan\":\"Compi�gne-Sud-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":121,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74519,49.36744]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35237,\"INSEE_Comm\":\"60525\",\"nomCom\":\"Raray\",\"NOM_COM\":\"RARAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.71969,49.26344]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35238,\"INSEE_Comm\":\"80089\",\"nomCom\":\"Berneuil\",\"NOM_COM\":\"BERNEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"8020\",\"nomCan\":\"Domart-en-Ponthieu\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.1736,50.08821]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35239,\"INSEE_Comm\":\"80238\",\"nomCom\":\"Dernancourt\",\"NOM_COM\":\"DERNANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8006\",\"nomCan\":\"Albert\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62335,49.97902]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35240,\"INSEE_Comm\":\"80435\",\"nomCom\":\"Hesb�court\",\"NOM_COM\":\"HESBECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.14252,49.94651]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35242,\"INSEE_Comm\":\"80748\",\"nomCom\":\"Templeux-le-Gu�rard\",\"NOM_COM\":\"TEMPLEUX-LE-GUERARD\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.14472,49.96333]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35253,\"INSEE_Comm\":\"80124\",\"nomCom\":\"Bourseville\",\"NOM_COM\":\"BOURSEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8046\",\"nomCan\":\"Friville-Escarbotin\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":26,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.52189,50.10535]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35277,\"INSEE_Comm\":\"76164\",\"nomCom\":\"Caudebec-en-Caux\",\"NOM_COM\":\"CAUDEBEC-EN-CAUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73483,49.53051]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35278,\"INSEE_Comm\":\"76490\",\"nomCom\":\"Ourville-en-Caux\",\"NOM_COM\":\"OURVILLE-EN-CAUX\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7640\",\"nomCan\":\"Ourville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":43,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59899,49.73274]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35279,\"INSEE_Comm\":\"76213\",\"nomCom\":\"Daubeuf-Serville\",\"NOM_COM\":\"DAUBEUF-SERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7624\",\"nomCan\":\"Goderville\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.48168,49.69602]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35280,\"INSEE_Comm\":\"76272\",\"nomCom\":\"Fontaine-le-Dun\",\"NOM_COM\":\"FONTAINE-LE-DUN\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84567,49.81417]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35281,\"INSEE_Comm\":\"76493\",\"nomCom\":\"Paluel\",\"NOM_COM\":\"PALUEL\",\"Statut\":\"Communesimple\",\"idCan\":\"7609\",\"nomCan\":\"Cany-Barville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63076,49.84419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35282,\"INSEE_Comm\":\"76476\",\"nomCom\":\"Notre-Dame-de-Gravenchon\",\"NOM_COM\":\"NOTRE-DAME-DE-GRAVENCHON\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":222,\"ratioInvFd\":7},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57288,49.48959]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35283,\"INSEE_Comm\":\"76078\",\"nomCom\":\"Bennetot\",\"NOM_COM\":\"BENNETOT\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.55692,49.67802]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35287,\"INSEE_Comm\":\"95656\",\"nomCom\":\"Vienne-en-Arthies\",\"NOM_COM\":\"VIENNE-EN-ARTHIES\",\"Statut\":\"Communesimple\",\"idCan\":\"9516\",\"nomCan\":\"Magny-en-Vexin\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.72227,49.06648]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35292,\"INSEE_Comm\":\"27076\",\"nomCom\":\"Boisset-les-Pr�vanches\",\"NOM_COM\":\"BOISSET-LES-PREVANCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"2726\",\"nomCan\":\"Pacy-sur-Eure\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.33275,48.96623]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35308,\"INSEE_Comm\":\"27085\",\"nomCom\":\"Bosc-B�nard-Crescy\",\"NOM_COM\":\"BOSC-BENARD-CRESCY\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.80717,49.3166]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35311,\"INSEE_Comm\":\"27248\",\"nomCom\":\"Folleville\",\"NOM_COM\":\"FOLLEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2734\",\"nomCan\":\"Thiberville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":10,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.52484,49.15811]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35312,\"INSEE_Comm\":\"27247\",\"nomCom\":\"Flipou\",\"NOM_COM\":\"FLIPOU\",\"Statut\":\"Communesimple\",\"idCan\":\"2718\",\"nomCan\":\"Fleury-sur-Andelle\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.28417,49.31286]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35324,\"INSEE_Comm\":\"78072\",\"nomCom\":\"Boinvilliers\",\"NOM_COM\":\"BOINVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.66289,48.92049]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35326,\"INSEE_Comm\":\"28348\",\"nomCom\":\"Saint-Lubin-des-Joncherets\",\"NOM_COM\":\"SAINT-LUBIN-DES-JONCHERETS\",\"Statut\":\"Communesimple\",\"idCan\":\"2805\",\"nomCan\":\"Brezolles\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":127,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18734,48.75092]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35335,\"INSEE_Comm\":\"61465\",\"nomCom\":\"S�grie-Fontaine\",\"NOM_COM\":\"SEGRIE-FONTAINE\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4039,48.82043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35336,\"INSEE_Comm\":\"61221\",\"nomCom\":\"Landigou\",\"NOM_COM\":\"LANDIGOU\",\"Statut\":\"Communesimple\",\"idCan\":\"6140\",\"nomCan\":\"Flers-Sud\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.47751,48.74368]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35341,\"INSEE_Comm\":\"95580\",\"nomCom\":\"Saint-Witz\",\"NOM_COM\":\"SAINT-WITZ\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":150,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55228,49.08578]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35343,\"INSEE_Comm\":\"78406\",\"nomCom\":\"Milon-la-Chapelle\",\"NOM_COM\":\"MILON-LA-CHAPELLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7805\",\"nomCan\":\"Chevreuse\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.04662,48.72847]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35346,\"INSEE_Comm\":\"80002\",\"nomCom\":\"Ablaincourt-Pressoir\",\"NOM_COM\":\"ABLAINCOURT-PRESSOIR\",\"Statut\":\"Communesimple\",\"idCan\":\"8015\",\"nomCan\":\"Chaulnes\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":19,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82482,49.84133]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35351,\"INSEE_Comm\":\"80627\",\"nomCom\":\"Plachy-Buyon\",\"NOM_COM\":\"PLACHY-BUYON\",\"Statut\":\"Communesimple\",\"idCan\":\"8017\",\"nomCan\":\"Conty\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2277,49.81206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35353,\"INSEE_Comm\":\"95063\",\"nomCom\":\"Bezons\",\"NOM_COM\":\"BEZONS\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"9504\",\"nomCan\":\"Bezons\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":546,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.21133,48.92598]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35358,\"INSEE_Comm\":\"76562\",\"nomCom\":\"Saint-Aubin-le-Cauf\",\"NOM_COM\":\"SAINT-AUBIN-LE-CAUF\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17617,49.86808]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35359,\"INSEE_Comm\":\"60640\",\"nomCom\":\"Tourly\",\"NOM_COM\":\"TOURLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6007\",\"nomCan\":\"Chaumont-en-Vexin\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.94209,49.22021]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35364,\"INSEE_Comm\":\"60425\",\"nomCom\":\"Montreuil-sur-Br�che\",\"NOM_COM\":\"MONTREUIL-SUR-BRECHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6016\",\"nomCan\":\"Froissy\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.27408,49.51237]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35388,\"INSEE_Comm\":\"14738\",\"nomCom\":\"Verson\",\"NOM_COM\":\"VERSON\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":124,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.46331,49.16366]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35392,\"INSEE_Comm\":\"14349\",\"nomCom\":\"Laize-la-Ville\",\"NOM_COM\":\"LAIZE-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38062,49.08014]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35406,\"INSEE_Comm\":\"61338\",\"nomCom\":\"Pr�potin\",\"NOM_COM\":\"PREPOTIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.59035,48.6206]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35439,\"INSEE_Comm\":\"27182\",\"nomCom\":\"Courteilles\",\"NOM_COM\":\"COURTEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9999,48.73854]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35441,\"INSEE_Comm\":\"14168\",\"nomCom\":\"Colombi�res\",\"NOM_COM\":\"COLOMBIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"1433\",\"nomCan\":\"Tr�vi�res\",\"Code_Arron\":\"1\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.98845,49.30316]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35463,\"INSEE_Comm\":\"61343\",\"nomCom\":\"Randonnai\",\"NOM_COM\":\"RANDONNAI\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.66666,48.64009]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35481,\"INSEE_Comm\":\"27341\",\"nomCom\":\"Hosmes\",\"NOM_COM\":\"L'HOSMES\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":4,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03145,48.78969]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35513,\"INSEE_Comm\":\"60372\",\"nomCom\":\"Luchy\",\"NOM_COM\":\"LUCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11484,49.5519]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35515,\"INSEE_Comm\":\"27692\",\"nomCom\":\"Villettes\",\"NOM_COM\":\"VILLETTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2724\",\"nomCan\":\"Neubourg\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.04565,49.15426]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35520,\"INSEE_Comm\":\"61205\",\"nomCom\":\"Heugon\",\"NOM_COM\":\"HEUGON\",\"Statut\":\"Communesimple\",\"idCan\":\"6113\",\"nomCan\":\"Fert�-Fr�nel\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.39717,48.85771]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35523,\"INSEE_Comm\":\"27524\",\"nomCom\":\"Sainte-Colombe-la-Commanderie\",\"NOM_COM\":\"SAINTE-COLOMBE-LA-COMMANDERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":59,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9356,49.1074]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35529,\"INSEE_Comm\":\"27452\",\"nomCom\":\"Perriers-la-Campagne\",\"NOM_COM\":\"PERRIERS-LA-CAMPAGNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":32,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.75818,49.14631]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35530,\"INSEE_Comm\":\"27532\",\"nomCom\":\"Saint-Denis-du-B�h�lan\",\"NOM_COM\":\"SAINT-DENIS-DU-BEHELAN\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":19,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94782,48.86841]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35533,\"INSEE_Comm\":\"27424\",\"nomCom\":\"Nagel-S�ez-Mesnil\",\"NOM_COM\":\"NAGEL-SEEZ-MESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9406,48.92475]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35541,\"INSEE_Comm\":\"61226\",\"nomCom\":\"Lignerolles\",\"NOM_COM\":\"LIGNEROLLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6134\",\"nomCan\":\"Tourouvre\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.57553,48.59872]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35544,\"INSEE_Comm\":\"27025\",\"nomCom\":\"Autheuil-Authouillet\",\"NOM_COM\":\"AUTHEUIL-AUTHOUILLET\",\"Statut\":\"Communesimple\",\"idCan\":\"2742\",\"nomCan\":\"Gaillon-Campagne\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29478,49.10043]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35549,\"INSEE_Comm\":\"95422\",\"nomCom\":\"Montgeroult\",\"NOM_COM\":\"MONTGEROULT\",\"Statut\":\"Communesimple\",\"idCan\":\"9527\",\"nomCan\":\"Vigny\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00788,49.09075]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35550,\"INSEE_Comm\":\"14015\",\"nomCom\":\"Anisy\",\"NOM_COM\":\"ANISY\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.39932,49.25048]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35551,\"INSEE_Comm\":\"61084\",\"nomCom\":\"Champcerie\",\"NOM_COM\":\"CHAMPCERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"6129\",\"nomCan\":\"Putanges-Pont-�crepin\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.22808,48.79797]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35554,\"INSEE_Comm\":\"61173\",\"nomCom\":\"Fontenai-sur-Orne\",\"NOM_COM\":\"FONTENAI-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6139\",\"nomCan\":\"Argentan-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.07402,48.71693]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35578,\"INSEE_Comm\":\"27699\",\"nomCom\":\"Voiscreville\",\"NOM_COM\":\"VOISCREVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2707\",\"nomCan\":\"Bourgtheroulde-Infreville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.7669,49.2803]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35593,\"INSEE_Comm\":\"60671\",\"nomCom\":\"Versigny\",\"NOM_COM\":\"VERSIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.78381,49.16101]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35594,\"INSEE_Comm\":\"14218\",\"nomCom\":\"Danestal\",\"NOM_COM\":\"DANESTAL\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":138,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.03297,49.24358]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35624,\"INSEE_Comm\":\"14202\",\"nomCom\":\"Cricqueboeuf\",\"NOM_COM\":\"CRICQUEBOEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"1419\",\"nomCan\":\"Honfleur\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.13907,49.39649]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35625,\"INSEE_Comm\":\"14355\",\"nomCom\":\"Lantheuil\",\"NOM_COM\":\"LANTHEUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.51583,49.26712]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35626,\"INSEE_Comm\":\"27361\",\"nomCom\":\"Lande-Saint-L�ger\",\"NOM_COM\":\"LALANDE-SAINT-LEGER\",\"Statut\":\"Communesimple\",\"idCan\":\"2706\",\"nomCan\":\"Beuzeville\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":37,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.33608,49.29769]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35627,\"INSEE_Comm\":\"80127\",\"nomCom\":\"Bouvaincourt-sur-Bresle\",\"NOM_COM\":\"BOUVAINCOURT-SUR-BRESLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":49,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.49612,50.03592]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35628,\"INSEE_Comm\":\"80694\",\"nomCom\":\"Sailly-le-Sec\",\"NOM_COM\":\"SAILLY-LE-SEC\",\"Statut\":\"Communesimple\",\"idCan\":\"8014\",\"nomCan\":\"Bray-sur-Somme\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.58905,49.92719]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35629,\"INSEE_Comm\":\"80823\",\"nomCom\":\"Warvillers\",\"NOM_COM\":\"WARVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.69112,49.77982]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35630,\"INSEE_Comm\":\"60162\",\"nomCom\":\"Corbeil-Cerf\",\"NOM_COM\":\"CORBEIL-CERF\",\"Statut\":\"Communesimple\",\"idCan\":\"6023\",\"nomCan\":\"M�ru\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11059,49.27727]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35631,\"INSEE_Comm\":\"60168\",\"nomCom\":\"Courcelles-Epayelles\",\"NOM_COM\":\"COURCELLES-EPAYELLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6021\",\"nomCan\":\"Maignelay-Montigny\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.62595,49.56964]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35632,\"INSEE_Comm\":\"60686\",\"nomCom\":\"Villers-sous-Saint-Leu\",\"NOM_COM\":\"VILLERS-SOUS-SAINT-LEU\",\"Statut\":\"Communesimple\",\"idCan\":\"6039\",\"nomCan\":\"Montataire\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.3847,49.21759]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35633,\"INSEE_Comm\":\"60175\",\"nomCom\":\"Creil\",\"NOM_COM\":\"CREIL\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6098\",\"nomCan\":\"Creil\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":543,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48482,49.25332]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35634,\"INSEE_Comm\":\"60111\",\"nomCom\":\"Broyes\",\"NOM_COM\":\"BROYES\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45364,49.62776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35635,\"INSEE_Comm\":\"60579\",\"nomCom\":\"Saint-Jean-aux-Bois\",\"NOM_COM\":\"SAINT-JEAN-AUX-BOIS\",\"Statut\":\"Communesimple\",\"idCan\":\"6037\",\"nomCan\":\"Compi�gne-Sud-Est\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.8871,49.35019]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35636,\"INSEE_Comm\":\"80144\",\"nomCom\":\"Brouchy\",\"NOM_COM\":\"BROUCHY\",\"Statut\":\"Communesimple\",\"idCan\":\"8024\",\"nomCan\":\"Ham\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.09722,49.71637]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35650,\"INSEE_Comm\":\"80596\",\"nomCom\":\"Neuvillette\",\"NOM_COM\":\"NEUVILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":13,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31464,50.20843]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35668,\"INSEE_Comm\":\"76656\",\"nomCom\":\"Saint-Victor-l'Abbaye\",\"NOM_COM\":\"SAINT-VICTOR-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":49,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12422,49.66493]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35669,\"INSEE_Comm\":\"76275\",\"nomCom\":\"Fontenay\",\"NOM_COM\":\"FONTENAY\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":23,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.17811,49.56985]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35673,\"INSEE_Comm\":\"95218\",\"nomCom\":\"�ragny\",\"NOM_COM\":\"ERAGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"9537\",\"nomCan\":\"Cergy-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":429,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.10136,49.02046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35692,\"INSEE_Comm\":\"27653\",\"nomCom\":\"Tourny\",\"NOM_COM\":\"TOURNY\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5464,49.18745]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35700,\"INSEE_Comm\":\"76081\",\"nomCom\":\"Berneval-le-Grand\",\"NOM_COM\":\"BERNEVAL-LE-GRAND\",\"Statut\":\"Communesimple\",\"idCan\":\"7614\",\"nomCan\":\"Dieppe-Est\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":106,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.18897,49.95459]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35705,\"INSEE_Comm\":\"28267\",\"nomCom\":\"Montreuil\",\"NOM_COM\":\"MONTREUIL\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38033,48.77264]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35715,\"INSEE_Comm\":\"61219\",\"nomCom\":\"Lande-Saint-Sim�on\",\"NOM_COM\":\"LALANDE-SAINT-SIMEON\",\"Statut\":\"Communesimple\",\"idCan\":\"6104\",\"nomCan\":\"Athis-de-l'Orne\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.43417,48.82685]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35722,\"INSEE_Comm\":\"28016\",\"nomCom\":\"Autels-Villevillon\",\"NOM_COM\":\"LESAUTELS-VILLEVILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99891,48.17589]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35724,\"INSEE_Comm\":\"95492\",\"nomCom\":\"Plessis-Gassot\",\"NOM_COM\":\"LEPLESSIS-GASSOT\",\"Statut\":\"Communesimple\",\"idCan\":\"9508\",\"nomCan\":\"�couen\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.41592,49.03579]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35725,\"INSEE_Comm\":\"95493\",\"nomCom\":\"Plessis-Luzarches\",\"NOM_COM\":\"LEPLESSIS-LUZARCHES\",\"Statut\":\"Communesimple\",\"idCan\":\"9515\",\"nomCan\":\"Luzarches\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45476,49.09573]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35726,\"INSEE_Comm\":\"14297\",\"nomCom\":\"Gavrus\",\"NOM_COM\":\"GAVRUS\",\"Statut\":\"Communesimple\",\"idCan\":\"1416\",\"nomCan\":\"�vrecy\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":92,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.50803,49.11676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35727,\"INSEE_Comm\":\"95353\",\"nomCom\":\"Maffliers\",\"NOM_COM\":\"MAFFLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"9526\",\"nomCan\":\"Viarmes\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":38,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.31234,49.08363]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35735,\"INSEE_Comm\":\"80009\",\"nomCom\":\"Ailly-le-Haut-Clocher\",\"NOM_COM\":\"AILLY-LE-HAUT-CLOCHER\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"8004\",\"nomCan\":\"Ailly-le-Haut-Clocher\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":60,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.99604,50.08137]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35736,\"INSEE_Comm\":\"80759\",\"nomCom\":\"Tilloloy\",\"NOM_COM\":\"TILLOLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.74419,49.64165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35747,\"INSEE_Comm\":\"76274\",\"nomCom\":\"Fontelaye\",\"NOM_COM\":\"LAFONTELAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":1,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94378,49.69405]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35755,\"INSEE_Comm\":\"28409\",\"nomCom\":\"Vieuvicq\",\"NOM_COM\":\"VIEUVICQ\",\"Statut\":\"Communesimple\",\"idCan\":\"2806\",\"nomCan\":\"Brou\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.20658,48.26136]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35766,\"INSEE_Comm\":\"61262\",\"nomCom\":\"M�nil-Ciboult\",\"NOM_COM\":\"LEMENIL-CIBOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"6133\",\"nomCan\":\"Tinchebray\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.79188,48.76164]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35772,\"INSEE_Comm\":\"14152\",\"nomCom\":\"Chapelle-Engerbold\",\"NOM_COM\":\"LACHAPELLE-ENGERBOLD\",\"Statut\":\"Communesimple\",\"idCan\":\"1412\",\"nomCan\":\"Cond�-sur-Noireau\",\"Code_Arron\":\"4\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.60126,48.88894]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35810,\"INSEE_Comm\":\"76482\",\"nomCom\":\"Offranville\",\"NOM_COM\":\"OFFRANVILLE\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7639\",\"nomCan\":\"Offranville\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":62,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.03537,49.87117]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35833,\"INSEE_Comm\":\"28332\",\"nomCom\":\"Sainte-Gemme-Moronval\",\"NOM_COM\":\"SAINTE-GEMME-MORONVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"2813\",\"nomCan\":\"Dreux-Est\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":122,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.41199,48.73554]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35840,\"INSEE_Comm\":\"27472\",\"nomCom\":\"Portes\",\"NOM_COM\":\"PORTES\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.94827,49.02519]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35843,\"INSEE_Comm\":\"61432\",\"nomCom\":\"Saint-Michel-Tuboeuf\",\"NOM_COM\":\"SAINT-MICHEL-TUBOEUF\",\"Statut\":\"Communesimple\",\"idCan\":\"6118\",\"nomCan\":\"Aigle-Est\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.6865,48.75339]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35845,\"INSEE_Comm\":\"61112\",\"nomCom\":\"Colonard-Corubert\",\"NOM_COM\":\"COLONARD-CORUBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.64915,48.40946]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35875,\"INSEE_Comm\":\"60063\",\"nomCom\":\"Berneuil-en-Bray\",\"NOM_COM\":\"BERNEUIL-EN-BRAY\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":18,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.05827,49.35787]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35882,\"INSEE_Comm\":\"80326\",\"nomCom\":\"Fontaine-sous-Montdidier\",\"NOM_COM\":\"FONTAINE-SOUS-MONTDIDIER\",\"Statut\":\"Communesimple\",\"idCan\":\"8027\",\"nomCan\":\"Montdidier\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.50539,49.65507]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35886,\"INSEE_Comm\":\"28185\",\"nomCom\":\"Goussainville\",\"NOM_COM\":\"GOUSSAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2801\",\"nomCan\":\"Anet\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":41,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56001,48.78298]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35891,\"INSEE_Comm\":\"76222\",\"nomCom\":\"Duclair\",\"NOM_COM\":\"DUCLAIR\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":157,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.86667,49.48898]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35892,\"INSEE_Comm\":\"14147\",\"nomCom\":\"Cernay\",\"NOM_COM\":\"CERNAY\",\"Statut\":\"Communesimple\",\"idCan\":\"1426\",\"nomCan\":\"Orbec\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.324,49.01641]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35895,\"INSEE_Comm\":\"27157\",\"nomCom\":\"Chesne\",\"NOM_COM\":\"LECHESNE\",\"Statut\":\"Communesimple\",\"idCan\":\"2708\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":47,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9359,48.89105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35896,\"INSEE_Comm\":\"14197\",\"nomCom\":\"Cresserons\",\"NOM_COM\":\"CRESSERONS\",\"Statut\":\"Communesimple\",\"idCan\":\"1414\",\"nomCan\":\"Douvres-la-D�livrande\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.35425,49.28763]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35898,\"INSEE_Comm\":\"27416\",\"nomCom\":\"Buis-sur-Damville\",\"NOM_COM\":\"BUIS-SUR-DAMVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":38,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.12162,48.84279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35905,\"INSEE_Comm\":\"28275\",\"nomCom\":\"N�ron\",\"NOM_COM\":\"NERON\",\"Statut\":\"Communesimple\",\"idCan\":\"2819\",\"nomCan\":\"Nogent-le-Roi\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.50308,48.59618]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35909,\"INSEE_Comm\":\"78354\",\"nomCom\":\"Magnanville\",\"NOM_COM\":\"MAGNANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7833\",\"nomCan\":\"Mantes-la-Ville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.68567,48.96819]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35910,\"INSEE_Comm\":\"14287\",\"nomCom\":\"Fr�nouville\",\"NOM_COM\":\"FRENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1406\",\"nomCan\":\"Bourgu�bus\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":188,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24915,49.13268]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35911,\"INSEE_Comm\":\"61298\",\"nomCom\":\"Moulins-sur-Orne\",\"NOM_COM\":\"MOULINS-SUR-ORNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6139\",\"nomCan\":\"Argentan-Ouest\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0654,48.75323]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35913,\"INSEE_Comm\":\"61452\",\"nomCom\":\"Saint-Roch-sur-�grenne\",\"NOM_COM\":\"SAINT-ROCH-SUR-EGRENNE\",\"Statut\":\"Communesimple\",\"idCan\":\"6127\",\"nomCan\":\"Passais\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.74474,48.57604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35914,\"INSEE_Comm\":\"61390\",\"nomCom\":\"Saint-Georges-d'Annebecq\",\"NOM_COM\":\"SAINT-GEORGES-D'ANNEBECQ\",\"Statut\":\"Communesimple\",\"idCan\":\"6107\",\"nomCan\":\"Briouze\",\"Code_Arron\":\"2\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.26544,48.6308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35925,\"INSEE_Comm\":\"14024\",\"nomCom\":\"Auberville\",\"NOM_COM\":\"AUBERVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"1415\",\"nomCan\":\"Dozul�\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.0268,49.31112]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35937,\"INSEE_Comm\":\"95014\",\"nomCom\":\"Andilly\",\"NOM_COM\":\"ANDILLY\",\"Statut\":\"Communesimple\",\"idCan\":\"9524\",\"nomCan\":\"Soisy-sous-Montmorency\",\"Code_Arron\":\"2\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":192,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30277,49.00841]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35939,\"INSEE_Comm\":\"60422\",\"nomCom\":\"Montlognon\",\"NOM_COM\":\"MONTLOGNON\",\"Statut\":\"Communesimple\",\"idCan\":\"6025\",\"nomCan\":\"Nanteuil-le-Haudouin\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.70618,49.15527]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35940,\"INSEE_Comm\":\"60033\",\"nomCom\":\"Avilly-Saint-L�onard\",\"NOM_COM\":\"AVILLY-SAINT-LEONARD\",\"Statut\":\"Communesimple\",\"idCan\":\"6034\",\"nomCan\":\"Senlis\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.52768,49.18392]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35944,\"INSEE_Comm\":\"76638\",\"nomCom\":\"Saint-Pierre-en-Val\",\"NOM_COM\":\"SAINT-PIERRE-EN-VAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7619\",\"nomCan\":\"Eu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":68,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.43977,50.01076]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35951,\"INSEE_Comm\":\"76277\",\"nomCom\":\"Foss�\",\"NOM_COM\":\"LEFOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":31,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.57733,49.60761]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35958,\"INSEE_Comm\":\"80500\",\"nomCom\":\"Maisni�res\",\"NOM_COM\":\"MAISNIERES\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60917,50.01465]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35972,\"INSEE_Comm\":\"14083\",\"nomCom\":\"Bonnebosq\",\"NOM_COM\":\"BONNEBOSQ\",\"Statut\":\"Communesimple\",\"idCan\":\"1410\",\"nomCan\":\"Cambremer\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.09009,49.21828]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35973,\"INSEE_Comm\":\"76350\",\"nomCom\":\"Hautot-sur-Seine\",\"NOM_COM\":\"HAUTOT-SUR-SEINE\",\"Statut\":\"Communesimple\",\"idCan\":\"7626\",\"nomCan\":\"Grand-Couronne\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.97775,49.36279]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35974,\"INSEE_Comm\":\"76111\",\"nomCom\":\"Bois-l'�v�que\",\"NOM_COM\":\"BOIS-L'EVEQUE\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.25553,49.45246]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35975,\"INSEE_Comm\":\"76573\",\"nomCom\":\"Saint-Denis-le-Thiboult\",\"NOM_COM\":\"SAINT-DENIS-LE-THIBOULT\",\"Statut\":\"Communesimple\",\"idCan\":\"7613\",\"nomCan\":\"Darn�tal\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.35297,49.45935]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35976,\"INSEE_Comm\":\"80835\",\"nomCom\":\"Yzeux\",\"NOM_COM\":\"YZEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.11003,49.97932]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35977,\"INSEE_Comm\":\"80415\",\"nomCom\":\"Hangest-en-Santerre\",\"NOM_COM\":\"HANGEST-EN-SANTERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8028\",\"nomCan\":\"Moreuil\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.60213,49.75096]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35978,\"INSEE_Comm\":\"60250\",\"nomCom\":\"Fouquenies\",\"NOM_COM\":\"FOUQUENIES\",\"Statut\":\"Communesimple\",\"idCan\":\"6040\",\"nomCan\":\"Beauvais-Nord-Ouest\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.03012,49.46528]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35979,\"INSEE_Comm\":\"60163\",\"nomCom\":\"Cormeilles\",\"NOM_COM\":\"CORMEILLES\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19662,49.64244]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35980,\"INSEE_Comm\":\"60648\",\"nomCom\":\"Troussencourt\",\"NOM_COM\":\"TROUSSENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24854,49.60358]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35981,\"INSEE_Comm\":\"60559\",\"nomCom\":\"Rue-Saint-Pierre\",\"NOM_COM\":\"LARUE-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29122,49.414]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35982,\"INSEE_Comm\":\"60001\",\"nomCom\":\"Abancourt\",\"NOM_COM\":\"ABANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76924,49.69306]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35983,\"INSEE_Comm\":\"60335\",\"nomCom\":\"Lachapelle-sous-Gerberoy\",\"NOM_COM\":\"LACHAPELLE-SOUS-GERBEROY\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.87591,49.54158]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35984,\"INSEE_Comm\":\"60214\",\"nomCom\":\"Ernemont-Boutavent\",\"NOM_COM\":\"ERNEMONT-BOUTAVENT\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":9,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79503,49.59307]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35985,\"INSEE_Comm\":\"60128\",\"nomCom\":\"Canny-sur-Th�rain\",\"NOM_COM\":\"CANNY-SUR-THERAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"6015\",\"nomCan\":\"Formerie\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.71772,49.60808]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35986,\"INSEE_Comm\":\"60153\",\"nomCom\":\"Choqueuse-les-B�nards\",\"NOM_COM\":\"CHOQUEUSE-LES-BENARDS\",\"Statut\":\"Communesimple\",\"idCan\":\"6013\",\"nomCan\":\"Cr�vecoeur-le-Grand\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07488,49.64981]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35987,\"INSEE_Comm\":\"60206\",\"nomCom\":\"�lincourt-Sainte-Marguerite\",\"NOM_COM\":\"ELINCOURT-SAINTE-MARGUERITE\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82885,49.53179]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35988,\"INSEE_Comm\":\"60068\",\"nomCom\":\"B�thisy-Saint-Pierre\",\"NOM_COM\":\"BETHISY-SAINT-PIERRE\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":125,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80361,49.30762]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35989,\"INSEE_Comm\":\"60061\",\"nomCom\":\"Belloy\",\"NOM_COM\":\"BELLOY\",\"Statut\":\"Communesimple\",\"idCan\":\"6031\",\"nomCan\":\"Ressons-sur-Matz\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.65285,49.53529]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35990,\"INSEE_Comm\":\"60670\",\"nomCom\":\"Verneuil-en-Halatte\",\"NOM_COM\":\"VERNEUIL-EN-HALATTE\",\"Statut\":\"Communesimple\",\"idCan\":\"6030\",\"nomCan\":\"Pont-Sainte-Maxence\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":264,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.53468,49.27302]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35991,\"INSEE_Comm\":\"60615\",\"nomCom\":\"S�r�villers\",\"NOM_COM\":\"SEREVILLERS\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.43517,49.63528]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35992,\"INSEE_Comm\":\"60117\",\"nomCom\":\"Bussy\",\"NOM_COM\":\"BUSSY\",\"Statut\":\"Communesimple\",\"idCan\":\"6018\",\"nomCan\":\"Guiscard\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98057,49.63142]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35994,\"INSEE_Comm\":\"80180\",\"nomCom\":\"Cavillon\",\"NOM_COM\":\"CAVILLON\",\"Statut\":\"Communesimple\",\"idCan\":\"8034\",\"nomCan\":\"Picquigny\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07549,49.91822]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35995,\"INSEE_Comm\":\"76124\",\"nomCom\":\"Bosc-Hyons\",\"NOM_COM\":\"BOSC-HYONS\",\"Statut\":\"Communesimple\",\"idCan\":\"7625\",\"nomCan\":\"Gournay-en-Bray\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":22,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.6499,49.45198]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35996,\"INSEE_Comm\":\"80458\",\"nomCom\":\"Lahoussoye\",\"NOM_COM\":\"LAHOUSSOYE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":56,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.48167,49.94885]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":35998,\"INSEE_Comm\":\"60431\",\"nomCom\":\"Morlincourt\",\"NOM_COM\":\"MORLINCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6029\",\"nomCan\":\"Noyon\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.04185,49.56877]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36032,\"INSEE_Comm\":\"76090\",\"nomCom\":\"Beuzeville-la-Grenier\",\"NOM_COM\":\"BEUZEVILLE-LA-GRENIER\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.42131,49.59218]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36033,\"INSEE_Comm\":\"76409\",\"nomCom\":\"Mannevillette\",\"NOM_COM\":\"MANNEVILLETTE\",\"Statut\":\"Communesimple\",\"idCan\":\"7637\",\"nomCan\":\"Montivilliers\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":45,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.17539,49.59567]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36034,\"INSEE_Comm\":\"76086\",\"nomCom\":\"Bertrimont\",\"NOM_COM\":\"BERTRIMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7652\",\"nomCan\":\"T�tes\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.99752,49.6701]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36035,\"INSEE_Comm\":\"76348\",\"nomCom\":\"Hautot-Saint-Sulpice\",\"NOM_COM\":\"HAUTOT-SAINT-SULPICE\",\"Statut\":\"Communesimple\",\"idCan\":\"7615\",\"nomCan\":\"Doudeville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.73768,49.67943]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36036,\"INSEE_Comm\":\"76642\",\"nomCom\":\"Saint-Pierre-le-Viger\",\"NOM_COM\":\"SAINT-PIERRE-LE-VIGER\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":9,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.84973,49.8269]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36037,\"INSEE_Comm\":\"76660\",\"nomCom\":\"Sandouville\",\"NOM_COM\":\"SANDOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7648\",\"nomCan\":\"Saint-Romain-de-Colbosc\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":25,\"ratioInvFd\":10},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.30109,49.47777]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36042,\"INSEE_Comm\":\"28215\",\"nomCom\":\"Louville-la-Chenard\",\"NOM_COM\":\"LOUVILLE-LA-CHENARD\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.79519,48.32621]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36072,\"INSEE_Comm\":\"28205\",\"nomCom\":\"Lanneray\",\"NOM_COM\":\"LANNERAY\",\"Statut\":\"Communesimple\",\"idCan\":\"2809\",\"nomCan\":\"Ch�teaudun\",\"Code_Arron\":\"2\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":32,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.22911,48.08653]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36102,\"INSEE_Comm\":\"80811\",\"nomCom\":\"Voyennes\",\"NOM_COM\":\"VOYENNES\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.98445,49.76909]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36106,\"INSEE_Comm\":\"61337\",\"nomCom\":\"Pr�aux-du-Perche\",\"NOM_COM\":\"PREAUX-DU-PERCHE\",\"Statut\":\"Communesimple\",\"idCan\":\"6126\",\"nomCan\":\"Noc�\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.69298,48.32704]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36109,\"INSEE_Comm\":\"80442\",\"nomCom\":\"Hombleux\",\"NOM_COM\":\"HOMBLEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":44,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.99137,49.74312]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36116,\"INSEE_Comm\":\"76386\",\"nomCom\":\"Limpiville\",\"NOM_COM\":\"LIMPIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7653\",\"nomCan\":\"Valmont\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":13,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.5023,49.68725]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36118,\"INSEE_Comm\":\"80044\",\"nomCom\":\"Authieule\",\"NOM_COM\":\"AUTHIEULE\",\"Statut\":\"Communesimple\",\"idCan\":\"8021\",\"nomCan\":\"Doullens\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.37779,50.13591]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36135,\"INSEE_Comm\":\"14186\",\"nomCom\":\"Coulombs\",\"NOM_COM\":\"COULOMBS\",\"Statut\":\"Communesimple\",\"idCan\":\"1413\",\"nomCan\":\"Creully\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":52,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.56801,49.24871]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36160,\"INSEE_Comm\":\"27306\",\"nomCom\":\"Guichainville\",\"NOM_COM\":\"GUICHAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2717\",\"nomCan\":\"�vreux-Sud\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":125,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17902,48.98028]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36164,\"INSEE_Comm\":\"76330\",\"nomCom\":\"Gruchet-Saint-Sim�on\",\"NOM_COM\":\"GRUCHET-SAINT-SIMEON\",\"Statut\":\"Communesimple\",\"idCan\":\"7603\",\"nomCan\":\"Bacqueville-en-Caux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":50,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89115,49.8224]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36174,\"INSEE_Comm\":\"80639\",\"nomCom\":\"Poulainville\",\"NOM_COM\":\"POULAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8045\",\"nomCan\":\"Amiens8e(Nord)\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":24,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.30852,49.95349]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36177,\"INSEE_Comm\":\"27439\",\"nomCom\":\"Normanville\",\"NOM_COM\":\"NORMANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2716\",\"nomCan\":\"�vreux-Nord\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.16222,49.0724]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36178,\"INSEE_Comm\":\"78349\",\"nomCom\":\"Longvilliers\",\"NOM_COM\":\"LONGVILLIERS\",\"Statut\":\"Communesimple\",\"idCan\":\"7819\",\"nomCan\":\"Saint-Arnoult-en-Yvelines\",\"Code_Arron\":\"2\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":22,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.9992,48.57419]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36181,\"INSEE_Comm\":\"76625\",\"nomCom\":\"Saint-Nicolas-de-Bliquetuit\",\"NOM_COM\":\"SAINT-NICOLAS-DE-BLIQUETUIT\",\"Statut\":\"Communesimple\",\"idCan\":\"7610\",\"nomCan\":\"Caudebec-en-Caux\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":24,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.72434,49.50767]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36201,\"INSEE_Comm\":\"61162\",\"nomCom\":\"Ferri�re-au-Doyen\",\"NOM_COM\":\"LAFERRIERE-AU-DOYEN\",\"Statut\":\"Communesimple\",\"idCan\":\"6125\",\"nomCan\":\"Moulins-la-Marche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.50616,48.67954]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36203,\"INSEE_Comm\":\"14649\",\"nomCom\":\"Saint-Pierre-du-B�\",\"NOM_COM\":\"SAINT-PIERRE-DU-BU\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":35,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.20419,48.8646]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36209,\"INSEE_Comm\":\"60072\",\"nomCom\":\"Bitry\",\"NOM_COM\":\"BITRY\",\"Statut\":\"Communesimple\",\"idCan\":\"6001\",\"nomCan\":\"Attichy\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.07808,49.41458]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36216,\"INSEE_Comm\":\"76002\",\"nomCom\":\"Alvimare\",\"NOM_COM\":\"ALVIMARE\",\"Statut\":\"Communesimple\",\"idCan\":\"7620\",\"nomCan\":\"Fauville-en-Caux\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":34,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.63205,49.60716]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36229,\"INSEE_Comm\":\"61247\",\"nomCom\":\"Mal�table\",\"NOM_COM\":\"MALETABLE\",\"Statut\":\"Communesimple\",\"idCan\":\"6119\",\"nomCan\":\"Longny-au-Perche\",\"Code_Arron\":\"3\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.70429,48.56899]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36232,\"INSEE_Comm\":\"76744\",\"nomCom\":\"Villers-sous-Foucarmont\",\"NOM_COM\":\"VILLERS-SOUS-FOUCARMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"7605\",\"nomCan\":\"Blangy-sur-Bresle\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.5584,49.82547]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36233,\"INSEE_Comm\":\"80773\",\"nomCom\":\"Vadencourt\",\"NOM_COM\":\"VADENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.49046,50.01749]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36235,\"INSEE_Comm\":\"76045\",\"nomCom\":\"Auzouville-l'Esneval\",\"NOM_COM\":\"AUZOUVILLE-L'ESNEVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"7654\",\"nomCan\":\"Yerville\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":21,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.88372,49.63321]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36239,\"INSEE_Comm\":\"27492\",\"nomCom\":\"Romilly-la-Puthenaye\",\"NOM_COM\":\"ROMILLY-LA-PUTHENAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2704\",\"nomCan\":\"Beaumont-le-Roger\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":16,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.83777,49.01325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36246,\"INSEE_Comm\":\"76354\",\"nomCom\":\"H�nouville\",\"NOM_COM\":\"HENOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7616\",\"nomCan\":\"Duclair\",\"Code_Arron\":\"3\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.95132,49.47505]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36259,\"INSEE_Comm\":\"80548\",\"nomCom\":\"Millencourt-en-Ponthieu\",\"NOM_COM\":\"MILLENCOURT-EN-PONTHIEU\",\"Statut\":\"Communesimple\",\"idCan\":\"8031\",\"nomCan\":\"Nouvion\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91217,50.14995]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36267,\"INSEE_Comm\":\"27023\",\"nomCom\":\"Aulnay-sur-Iton\",\"NOM_COM\":\"AULNAY-SUR-ITON\",\"Statut\":\"Communesimple\",\"idCan\":\"2738\",\"nomCan\":\"�vreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.0551,48.99395]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36270,\"INSEE_Comm\":\"27141\",\"nomCom\":\"Champ-Dolent\",\"NOM_COM\":\"CHAMP-DOLENT\",\"Statut\":\"Communesimple\",\"idCan\":\"2711\",\"nomCan\":\"Conches-en-Ouche\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.00804,48.95887]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36274,\"INSEE_Comm\":\"80672\",\"nomCom\":\"Ribemont-sur-Ancre\",\"NOM_COM\":\"RIBEMONT-SUR-ANCRE\",\"Statut\":\"Communesimple\",\"idCan\":\"8018\",\"nomCan\":\"Corbie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.55902,49.97165]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36280,\"INSEE_Comm\":\"95018\",\"nomCom\":\"Argenteuil\",\"NOM_COM\":\"ARGENTEUIL\",\"Statut\":\"Sous-pr?fecture\",\"idCan\":\"9599\",\"nomCan\":\"Argenteuil\",\"Code_Arron\":\"1\",\"idDep\":\"95\",\"nomDep\":\"Val-d'Oise\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":2542,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.24104,48.95114]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36286,\"INSEE_Comm\":\"60264\",\"nomCom\":\"Frocourt\",\"NOM_COM\":\"FROCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":31,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.08361,49.38135]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36287,\"INSEE_Comm\":\"78297\",\"nomCom\":\"Guyancourt\",\"NOM_COM\":\"GUYANCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7828\",\"nomCan\":\"Montigny-le-Bretonneux\",\"Code_Arron\":\"4\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":1116,\"ratioInvFd\":2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.07606,48.77308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36288,\"INSEE_Comm\":\"60174\",\"nomCom\":\"Crapeaumesnil\",\"NOM_COM\":\"CRAPEAUMESNIL\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":17,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80723,49.64046]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36292,\"INSEE_Comm\":\"27662\",\"nomCom\":\"Triqueville\",\"NOM_COM\":\"TRIQUEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2727\",\"nomCan\":\"Pont-Audemer\",\"Code_Arron\":\"2\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":27,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.43735,49.32989]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36298,\"INSEE_Comm\":\"60371\",\"nomCom\":\"Loueuse\",\"NOM_COM\":\"LOUEUSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6035\",\"nomCan\":\"Songeons\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":10,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.83048,49.59308]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36299,\"INSEE_Comm\":\"80543\",\"nomCom\":\"M�tigny\",\"NOM_COM\":\"METIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.91143,49.93678]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36304,\"INSEE_Comm\":\"80520\",\"nomCom\":\"Maucourt\",\"NOM_COM\":\"MAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8037\",\"nomCan\":\"Rosi�res-en-Santerre\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.75234,49.79327]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36312,\"INSEE_Comm\":\"27293\",\"nomCom\":\"Gouville\",\"NOM_COM\":\"GOUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2713\",\"nomCan\":\"Damville\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":29,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.9998,48.84776]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36314,\"INSEE_Comm\":\"14467\",\"nomCom\":\"Noron-l'Abbaye\",\"NOM_COM\":\"NORON-L'ABBAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":30,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24765,48.89604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36326,\"INSEE_Comm\":\"14516\",\"nomCom\":\"Potigny\",\"NOM_COM\":\"POTIGNY\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":101,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.24735,48.97063]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36334,\"INSEE_Comm\":\"14390\",\"nomCom\":\"Maisoncelles-sur-Ajon\",\"NOM_COM\":\"MAISONCELLES-SUR-AJON\",\"Statut\":\"Communesimple\",\"idCan\":\"1437\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.53996,49.05956]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36350,\"INSEE_Comm\":\"80046\",\"nomCom\":\"Avelesges\",\"NOM_COM\":\"AVELESGES\",\"Statut\":\"Communesimple\",\"idCan\":\"8026\",\"nomCan\":\"Molliens-Dreuil\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93186,49.90325]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36354,\"INSEE_Comm\":\"76015\",\"nomCom\":\"Angiens\",\"NOM_COM\":\"ANGIENS\",\"Statut\":\"Communesimple\",\"idCan\":\"7622\",\"nomCan\":\"Fontaine-le-Dun\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":20,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.79898,49.8337]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36374,\"INSEE_Comm\":\"14032\",\"nomCom\":\"Authieux-sur-Calonne\",\"NOM_COM\":\"LESAUTHIEUX-SUR-CALONNE\",\"Statut\":\"Communesimple\",\"idCan\":\"1405\",\"nomCan\":\"Blangy-le-Ch�teau\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.27554,49.28412]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36376,\"INSEE_Comm\":\"28222\",\"nomCom\":\"Luplant�\",\"NOM_COM\":\"LUPLANTE\",\"Statut\":\"Communesimple\",\"idCan\":\"2815\",\"nomCan\":\"Illiers-Combray\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":14,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.38417,48.2989]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36379,\"INSEE_Comm\":\"80008\",\"nomCom\":\"Aigneville\",\"NOM_COM\":\"AIGNEVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"8022\",\"nomCan\":\"Gamaches\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":75,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60999,50.03676]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36382,\"INSEE_Comm\":\"60054\",\"nomCom\":\"Beaumont-les-Nonains\",\"NOM_COM\":\"BEAUMONT-LES-NONAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"6002\",\"nomCan\":\"Auneuil\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.00356,49.32549]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36390,\"INSEE_Comm\":\"76499\",\"nomCom\":\"Petiville\",\"NOM_COM\":\"PETIVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7633\",\"nomCan\":\"Lillebonne\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":40,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.58396,49.4542]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36395,\"INSEE_Comm\":\"61080\",\"nomCom\":\"Chahains\",\"NOM_COM\":\"CHAHAINS\",\"Statut\":\"Communesimple\",\"idCan\":\"6108\",\"nomCan\":\"Carrouges\",\"Code_Arron\":\"1\",\"idDep\":\"61\",\"nomDep\":\"Orne\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":0,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.1164,48.56182]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36396,\"INSEE_Comm\":\"60543\",\"nomCom\":\"Rocquemont\",\"NOM_COM\":\"ROCQUEMONT\",\"Statut\":\"Communesimple\",\"idCan\":\"6012\",\"nomCan\":\"Cr�py-en-Valois\",\"Code_Arron\":\"4\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":3,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.82009,49.25965]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36397,\"INSEE_Comm\":\"27196\",\"nomCom\":\"Damps\",\"NOM_COM\":\"LESDAMPS\",\"Statut\":\"Communesimple\",\"idCan\":\"2728\",\"nomCan\":\"Pont-de-l'Arche\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":119,\"ratioInvFd\":-8},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.17227,49.29422]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36398,\"INSEE_Comm\":\"80062\",\"nomCom\":\"Beaucamps-le-Vieux\",\"NOM_COM\":\"BEAUCAMPS-LE-VIEUX\",\"Statut\":\"Communesimple\",\"idCan\":\"8025\",\"nomCan\":\"Hornoy-le-Bourg\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":59,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.77757,49.84357]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36415,\"INSEE_Comm\":\"80098\",\"nomCom\":\"Bettembos\",\"NOM_COM\":\"BETTEMBOS\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.88151,49.804]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36427,\"INSEE_Comm\":\"28078\",\"nomCom\":\"Chapelle-Guillaume\",\"NOM_COM\":\"CHAPELLE-GUILLAUME\",\"Statut\":\"Communesimple\",\"idCan\":\"2803\",\"nomCan\":\"Authon-du-Perche\",\"Code_Arron\":\"4\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":1,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.89284,48.11921]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36430,\"INSEE_Comm\":\"60495\",\"nomCom\":\"Plainval\",\"NOM_COM\":\"PLAINVAL\",\"Statut\":\"Communesimple\",\"idCan\":\"6033\",\"nomCan\":\"Saint-Just-en-Chauss�e\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":27,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.45774,49.53406]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36431,\"INSEE_Comm\":\"28310\",\"nomCom\":\"Puisaye\",\"NOM_COM\":\"LAPUISAYE\",\"Statut\":\"Communesimple\",\"idCan\":\"2822\",\"nomCan\":\"Senonches\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":16,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.96981,48.6126]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36433,\"INSEE_Comm\":\"60331\",\"nomCom\":\"Labosse\",\"NOM_COM\":\"LABOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"6010\",\"nomCan\":\"Coudray-Saint-Germer\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.89832,49.35408]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36434,\"INSEE_Comm\":\"76343\",\"nomCom\":\"Haucourt\",\"NOM_COM\":\"HAUCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"7623\",\"nomCan\":\"Forges-les-Eaux\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.67253,49.64422]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36441,\"INSEE_Comm\":\"14459\",\"nomCom\":\"Moutiers-Hubert\",\"NOM_COM\":\"LESMOUTIERS-HUBERT\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.25828,48.97221]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36443,\"INSEE_Comm\":\"60290\",\"nomCom\":\"Guignecourt\",\"NOM_COM\":\"GUIGNECOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"6027\",\"nomCan\":\"Nivillers\",\"Code_Arron\":\"1\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":12,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.12866,49.48688]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36450,\"INSEE_Comm\":\"80624\",\"nomCom\":\"Pierregot\",\"NOM_COM\":\"PIERREGOT\",\"Statut\":\"Communesimple\",\"idCan\":\"8041\",\"nomCan\":\"Villers-Bocage\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.38047,50.00779]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36458,\"INSEE_Comm\":\"28297\",\"nomCom\":\"P�zy\",\"NOM_COM\":\"PEZY\",\"Statut\":\"Communesimple\",\"idCan\":\"2824\",\"nomCan\":\"Voves\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":21,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.56655,48.31546]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36460,\"INSEE_Comm\":\"80695\",\"nomCom\":\"Sailly-Saillisel\",\"NOM_COM\":\"SAILLY-SAILLISEL\",\"Statut\":\"Communesimple\",\"idCan\":\"8016\",\"nomCan\":\"Combles\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":45,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.91254,50.02879]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36464,\"INSEE_Comm\":\"80747\",\"nomCom\":\"Templeux-la-Fosse\",\"NOM_COM\":\"TEMPLEUX-LA-FOSSE\",\"Statut\":\"Communesimple\",\"idCan\":\"8036\",\"nomCan\":\"Roisel\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":2,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.02445,49.97132]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36465,\"INSEE_Comm\":\"60360\",\"nomCom\":\"Liancourt\",\"NOM_COM\":\"LIANCOURT\",\"Statut\":\"Chef-lieucanton\",\"idCan\":\"6020\",\"nomCan\":\"Liancourt\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":171,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.46524,49.33008]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36468,\"INSEE_Comm\":\"28003\",\"nomCom\":\"Allainville\",\"NOM_COM\":\"ALLAINVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":4,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29474,48.72141]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36475,\"INSEE_Comm\":\"80728\",\"nomCom\":\"Saulchoy-sous-Poix\",\"NOM_COM\":\"SAULCHOY-SOUS-POIX\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.93891,49.75698]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36480,\"INSEE_Comm\":\"76214\",\"nomCom\":\"D�nestanville\",\"NOM_COM\":\"DENESTANVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7635\",\"nomCan\":\"Longueville-sur-Scie\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":12,\"ratioInvFd\":-1},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.09082,49.8077]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36491,\"INSEE_Comm\":\"78281\",\"nomCom\":\"Goussonville\",\"NOM_COM\":\"GOUSSONVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7807\",\"nomCan\":\"Guerville\",\"Code_Arron\":\"1\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":15,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.76677,48.9235]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36501,\"INSEE_Comm\":\"27521\",\"nomCom\":\"Saint-Christophe-sur-Avre\",\"NOM_COM\":\"SAINT-CHRISTOPHE-SUR-AVRE\",\"Statut\":\"Communesimple\",\"idCan\":\"2735\",\"nomCan\":\"Verneuil-sur-Avre\",\"Code_Arron\":\"3\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":2,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.8051,48.69883]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36502,\"INSEE_Comm\":\"28202\",\"nomCom\":\"Lamblore\",\"NOM_COM\":\"LAMBLORE\",\"Statut\":\"Communesimple\",\"idCan\":\"2814\",\"nomCan\":\"Fert�-Vidame\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.91565,48.62595]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36505,\"INSEE_Comm\":\"78224\",\"nomCom\":\"�tang-la-Ville\",\"NOM_COM\":\"L'ETANG-LA-VILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7822\",\"nomCan\":\"Saint-Nom-la-Bret�che\",\"Code_Arron\":\"3\",\"idDep\":\"78\",\"nomDep\":\"Yvelines\",\"idReg\":\"11\",\"nomReg\":\"�le-de-France\",\"TotalLogts\":71,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.06049,48.86741]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36507,\"INSEE_Comm\":\"80479\",\"nomCom\":\"Ligni�res-Ch�telain\",\"NOM_COM\":\"LIGNIERES-CHATELAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"8035\",\"nomCan\":\"Poix-de-Picardie\",\"Code_Arron\":\"2\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.86331,49.77609]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36508,\"INSEE_Comm\":\"80474\",\"nomCom\":\"Licourt\",\"NOM_COM\":\"LICOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8030\",\"nomCan\":\"Nesle\",\"Code_Arron\":\"4\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":5,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.90244,49.82526]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36512,\"INSEE_Comm\":\"14310\",\"nomCom\":\"Grainville-Langannerie\",\"NOM_COM\":\"GRAINVILLE-LANGANNERIE\",\"Statut\":\"Communesimple\",\"idCan\":\"1407\",\"nomCan\":\"Bretteville-sur-Laize\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":51,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.27187,49.00903]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36515,\"INSEE_Comm\":\"60034\",\"nomCom\":\"Avrechy\",\"NOM_COM\":\"AVRECHY\",\"Statut\":\"Communesimple\",\"idCan\":\"6008\",\"nomCan\":\"Clermont\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.4238,49.44491]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36522,\"INSEE_Comm\":\"80576\",\"nomCom\":\"Moyencourt\",\"NOM_COM\":\"MOYENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":6,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.94716,49.72416]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36523,\"INSEE_Comm\":\"27122\",\"nomCom\":\"Cahaignes\",\"NOM_COM\":\"CAHAIGNES\",\"Statut\":\"Communesimple\",\"idCan\":\"2714\",\"nomCan\":\"�cos\",\"Code_Arron\":\"1\",\"idDep\":\"27\",\"nomDep\":\"Eure\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":17,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.60839,49.20814]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36525,\"INSEE_Comm\":\"80224\",\"nomCom\":\"Cressy-Omencourt\",\"NOM_COM\":\"CRESSY-OMENCOURT\",\"Statut\":\"Communesimple\",\"idCan\":\"8038\",\"nomCan\":\"Roye\",\"Code_Arron\":\"3\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":8,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.90771,49.71753]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36533,\"INSEE_Comm\":\"76715\",\"nomCom\":\"Trouville\",\"NOM_COM\":\"TROUVILLE\",\"Statut\":\"Communesimple\",\"idCan\":\"7606\",\"nomCan\":\"Bolbec\",\"Code_Arron\":\"2\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":18,\"ratioInvFd\":-4},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.60044,49.5843]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36547,\"INSEE_Comm\":\"14501\",\"nomCom\":\"Pierrefitte-en-Cinglais\",\"NOM_COM\":\"PIERREFITTE-EN-CINGLAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"1417\",\"nomCan\":\"Falaise-Nord\",\"Code_Arron\":\"2\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":7,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.38866,48.90471]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36552,\"INSEE_Comm\":\"28173\",\"nomCom\":\"Gasville-Ois�me\",\"NOM_COM\":\"GASVILLE-OISEME\",\"Statut\":\"Communesimple\",\"idCan\":\"2807\",\"nomCan\":\"Chartres-Nord-Est\",\"Code_Arron\":\"1\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":66,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.55495,48.47275]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36559,\"INSEE_Comm\":\"28405\",\"nomCom\":\"Vert-en-Drouais\",\"NOM_COM\":\"VERT-EN-DROUAIS\",\"Statut\":\"Communesimple\",\"idCan\":\"2827\",\"nomCan\":\"Dreux-Ouest\",\"Code_Arron\":\"3\",\"idDep\":\"28\",\"nomDep\":\"Eure-et-Loir\",\"idReg\":\"24\",\"nomReg\":\"Centre\",\"TotalLogts\":42,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.29542,48.75105]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36560,\"INSEE_Comm\":\"14420\",\"nomCom\":\"Mesnil-Germain\",\"NOM_COM\":\"LEMESNIL-GERMAIN\",\"Statut\":\"Communesimple\",\"idCan\":\"1423\",\"nomCan\":\"Livarot\",\"Code_Arron\":\"3\",\"idDep\":\"14\",\"nomDep\":\"Calvados\",\"idReg\":\"25\",\"nomReg\":\"Basse-Normandie\",\"TotalLogts\":11,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.1887,49.04555]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36561,\"INSEE_Comm\":\"60664\",\"nomCom\":\"Vendeuil-Caply\",\"NOM_COM\":\"VENDEUIL-CAPLY\",\"Statut\":\"Communesimple\",\"idCan\":\"6006\",\"nomCan\":\"Breteuil\",\"Code_Arron\":\"2\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":23,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.29253,49.61036]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36562,\"INSEE_Comm\":\"80815\",\"nomCom\":\"Vron\",\"NOM_COM\":\"VRON\",\"Statut\":\"Communesimple\",\"idCan\":\"8039\",\"nomCan\":\"Rue\",\"Code_Arron\":\"1\",\"idDep\":\"80\",\"nomDep\":\"Somme\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":28,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.7641,50.31604]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36566,\"INSEE_Comm\":\"76371\",\"nomCom\":\"Ifs\",\"NOM_COM\":\"LESIFS\",\"Statut\":\"Communesimple\",\"idCan\":\"7618\",\"nomCan\":\"Envermeu\",\"Code_Arron\":\"1\",\"idDep\":\"76\",\"nomDep\":\"Seine-Maritime\",\"idReg\":\"23\",\"nomReg\":\"Haute-Normandie\",\"TotalLogts\":3,\"ratioInvFd\":-2},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.39681,49.88867]}},\r\n{\"type\":\"Feature\",\"properties\":{\"Id_Geofla\":36567,\"INSEE_Comm\":\"60127\",\"nomCom\":\"Canny-sur-Matz\",\"NOM_COM\":\"CANNY-SUR-MATZ\",\"Statut\":\"Communesimple\",\"idCan\":\"6019\",\"nomCan\":\"Lassigny\",\"Code_Arron\":\"3\",\"idDep\":\"60\",\"nomDep\":\"Oise\",\"idReg\":\"22\",\"nomReg\":\"Picardie\",\"TotalLogts\":25,\"ratioInvFd\":null},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.80106,49.60256]}}\r\n]\r\n}\r\n"
},
"$:/plugins/sycom/leaflet/example": {
"title": "$:/plugins/sycom/leaflet/example",
"type": "text/vnd.tiddlywiki",
"caption": "Example",
"text": "Different ways to use the [[leaflet plugin|$:/plugins/sycom/leaflet]]\n\n{{$:/plugins/sycom/leaflet/example/leaflet_with_geotiddler}}\n\n{{$:/plugins/sycom/leaflet/example/leaflet_with_geojsontiddler}}\n\n{{$:/plugins/sycom/leaflet/example/leaflet_with_non-tiddler_geo_data}}\n\n{{$:/plugins/sycom/leaflet/example/leaflet_with_filter}}\r\n"
},
"$:/plugins/sycom/leaflet/example/leaflet_with_filter": {
"created": "20151211173500000",
"modified": "20170317163500000",
"title": "$:/plugins/sycom/leaflet/example/leaflet_with_filter",
"text": "!! a map of a filter\r\nthis one displays all tiddlers tagged with <<tag example>> (there's a //all shadow// tweak, since they are shadowed). There is also one cluster per tiddler. Some colors are set from within each tiddler with `color` field.\n\n```\r\n<$leafmap tile='toner'\r\n\tplaces='{\"filter\":\"[all[shadows]tag[example]]\"}' clusterType='tiddler'/>\r\n```\r\n<$leafmap tile='toner'\r\n\tplaces='{\"filter\":\"[all[shadows]tag[example]]\"}' clusterType='tiddler'/>\r\n"
},
"$:/plugins/sycom/leaflet/example/leaflet_with_geojsontiddler": {
"created": "20161025150936935",
"modified": "20170317155936935",
"title": "$:/plugins/sycom/leaflet/example/leaflet_with_geojsontiddler",
"tags": "example leaflet",
"text": "!! a map of a geoJson tiddler\r\nThis one displays [[tiddlyWikiFrCommunity|$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity]] (that has a color field set to red), which is an almost direct geojson data extraction from the umap [[Utilisateurs du forum TiddlyWiki FR|https://umap.openstreetmap.fr/fr/map/tiddlywikifr_65983#6/46.995/2.549]]. `color` is set to orange, `marker` to pin. Cluster distance is default (80) on the first, set to 30 on the second.\n\n```\r\n<$leafmap tileControl\r\n places='{\"tiddler\":\"$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity\"}'\r\n style='{\"color\":\"orange\"}'\r\n marker='pin'/>\r\n<$leafmap tileControl cluster=\"30\"\r\n places='{\"tiddler\":\"$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity\"}'\r\n marker='pin'/>\r\n```\r\n<$leafmap tileControl\r\n places='{\"tiddler\":\"$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity\"}'\r\n style='{\"color\":\"orange\"}'\r\n marker='pin'/>\r\n<$leafmap tileControl cluster=\"30\"\r\n places='{\"tiddler\":\"$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity\"}'\r\n marker='pin'/>\r\n"
},
"$:/plugins/sycom/leaflet/example/leaflet_with_geotiddler": {
"created": "20151207090936935",
"modified": "20161025222038568",
"title": "$:/plugins/sycom/leaflet/example/leaflet_with_geotiddler",
"tags": "example leaflet",
"text": "!! a map of a GeoTiddler\r\nthis one displays the tiddler [[placeTiddler|$:/plugins/sycom/leaflet/example/placeTiddler]]. Note the tileControl attribute that enables map background selection. As the tiddler has its `color` field set to pink, objects are rendered pink. The cat is know a panther ;-). The tiddler also have a `style` field to define dash and thickness of the stroke...\n\n```\r\n<$leafmap\r\n tileControl\r\n places='{\"tiddler\":\"$:/plugins/sycom/leaflet/example/placeTiddler\"}'/>\r\n```\r\n<$leafmap\r\n tileControl\r\n places='{\"tiddler\":\"$:/plugins/sycom/leaflet/example/placeTiddler\"}'/>\r\n"
},
"$:/plugins/sycom/leaflet/example/leaflet_with_non-tiddler_geo_data": {
"point": "6.5,19.72",
"created": "20151207090936935",
"modified": "20151211172038568",
"tags": "example leaflet",
"title": "$:/plugins/sycom/leaflet/example/leaflet_with_non-tiddler_geo_data",
"text": "!! a map with data on the go\r\nvery useful for fast mapping. All objects that might be embedded in GeoTiddler can be used here. Let's display a map with satellite imagery and\n\n* a ''point'' at `6.5,19.72`\r\n* a ''polyline'' at `6.4,19.7 6.6,19.74`\n\nnote this tiddler is also a geoTiddler with one point at `6.5,19.72`\n\n```\r\n<$leafmap tile='sat'\r\n\tplaces='{\"point\":\"6.5,19.72\",\"polyline\":\"6.4,19.7 6.6,19.74\"}'/>\r\n```\n\n<$leafmap tile='sat'\r\n\tplaces='{\"point\":\"6.5,19.72\",\"polyline\":\"6.4,19.7 6.6,19.74\"}'/>\r\n"
},
"$:/plugins/sycom/leaflet/example/placeTiddler": {
"points": "52.799933,-2.589812 52.799959,-2.590939",
"polygon": "52.800608,-2.591668 52.800225,-2.591829 52.799849,-2.591937 52.799603,-2.591990 52.799427,-2.591990 52.799187,-2.591894 52.798863,-2.591550 52.798727,-2.591357 52.798662,-2.591121 52.798636,-2.590853 52.798655,-2.590542 52.798668,-2.590467 52.798701,-2.590359 52.798649,-2.590113 52.798623,-2.589920 52.798610,-2.589716 52.798636,-2.589437 52.798694,-2.589136 52.798850,-2.588975 52.799051,-2.588793 52.799311,-2.588707 52.799525,-2.588707 52.799726,-2.588772 52.800018,-2.588857 52.800290,-2.588911 52.800511,-2.589040 52.800731,-2.589126 52.800816,-2.589211 52.800413,-2.589812 52.800446,-2.590166 52.800452,-2.590520 52.800433,-2.590810 52.800426,-2.591068 52.800751,-2.591550 52.800621,-2.591679",
"polylines": "52.799382,-2.590059 52.799641,-2.588321|52.799330,-2.590048 52.799447,-2.588342|52.799265,-2.590059 52.799181,-2.588342|52.799486,-2.590724 52.799706,-2.592301|52.799414,-2.590767 52.799525,-2.592366|52.799356,-2.590714 52.799278,-2.592355",
"created": "20151119173416000",
"modified": "20151211173153114",
"color": "#ff80c0",
"style": "{\"dashArray\":\"6, 10\",\"weight\":\"8\"}",
"title": "$:/plugins/sycom/leaflet/example/placeTiddler",
"type": "text/vnd.tiddlywiki",
"tags": "example leaflet geometry",
"text": "This tiddler contains\n\n* a two `points` list : 52.799933,-2.589812 52.799959,-2.590939\r\n* a `polygon` : 52.800608,-2.591668 52.800225,-2.591829 52.799849 (...)\r\n* a `polyline`s list : 52.799382,-2.590059 52.799641,-2.588321|52.799330,-2.590048 52.799447,-2.588342|52.799265,(...)\n\nIt has also some styling informations\n\n* `color` is set to pink\r\n* `style` defines a dashed 8px thick line\n\ngo to edit mode to see the full data fields\r\n"
},
"$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity": {
"created": "20161025143416000",
"modified": "20170317143416000",
"title": "$:/plugins/sycom/leaflet/example/tiddlyWikiFrCommunity",
"type": "application/json",
"tags": "example leaflet geojson",
"color": "#dd0000",
"text": "{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{\"name\":\"Aknar\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4442090000000007,43.604652]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"CdriC\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.563166,47.478419]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Disanv Parean\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.4072784,49.1846226]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Fab13n\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[5.5867,45.1184]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Fabio\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.916515000000004,47.8664401]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Florent V.\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.156237,45.648377]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Joël\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[4.740042686462402,46.10446454226022]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Johanne\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-74.09016960000002,45.65189590000001]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Lakemp\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.19249,48.59338]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"LauDai\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.4750973000000158,43.5664556]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Lucivam\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[4.390278,45.434722]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Mikabi\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.44,43.604652]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Nico\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[2.2569674000000077,48.9899655]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Nicolas Friedli\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[6.8411643,46.9425711]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Phil\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[3.98337,50.36155]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Piwig\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-1.677793,48.117266]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Sylvain Comte\",\"description\":\"Créateur du leaflet map plugin\",\"url\":\"http://sylvain.comte.online.fr\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[1.08954,49.43584]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Sylvain Naudin\",\"description\":\"Admin du forum\",\"url\":\"http://sylvain.naud.in\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[-0.155689,45.471894]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Thierry Pasquier\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[0.3333,46.5833]}},{\"type\":\"Feature\",\"properties\":{\"name\":\"Vincent Delcros\",\"description\":\"\",\"url\":\"\"},\"geometry\":{\"type\":\"Point\",\"coordinates\":[5.2788245000000416,50.5500944]}}]}\r\n"
},
"$:/plugins/sycom/leaflet/icon": {
"title": "$:/plugins/sycom/leaflet/icon",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-leaflet-map tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\r\n <g fill-rule=\"evenodd\">\r\n <path d=\"M64 0L9.436 32v64L64 128l54.564-32V32zM48.755 32.436l30.8 7.791V95.01l-30.8-7.79zm57.281 2.328v54.781L81.927 95.01V40.227zm-59.818-2.21v54.782L20.945 92.8V38.018zm-10.454 5.9c-2.773 0-5.082 2.396-5.082 5 0 1.172.66 2.663 1.136 3.691l3.927 7.537 3.91-7.537c.476-1.028 1.154-2.444 1.154-3.69 0-2.605-2.273-5-5.045-5zm-.128 3.019c.043-.002.085-.002.128 0 1.09.008 1.969.892 1.972 1.982a1.975 1.975 0 0 1-1.972 1.972 1.976 1.976 0 0 1-1.973-1.972c0-1.043.806-1.907 1.845-1.982zm28.555 2.518c-7.066 0-12.946 6.116-12.946 12.754 0 2.987 1.686 6.78 2.9 9.4l10 19.219L74.1 66.145c1.215-2.62 2.945-6.223 2.945-9.4 0-6.638-5.788-12.754-12.854-12.754zm0 7.69a5.067 5.067 0 0 1 5.027 5.064c0 2.783-2.25 5.01-5.027 5.028-2.778-.018-5.027-2.244-5.027-5.028a5.068 5.068 0 0 1 5.027-5.063zm-38.582 7.274c-1.855 0-3.39 1.612-3.39 3.354 0 .784.435 1.776.754 2.464l2.627 5.045 2.61-5.045c.318-.688.772-1.63.772-2.464 0-1.742-1.518-3.354-3.373-3.354zm0 2.018a1.327 1.327 0 1 1 0 2.655 1.32 1.32 0 0 1-1.318-1.319 1.33 1.33 0 0 1 1.318-1.336zm66.336 5.845c-2.772 0-5.081 2.396-5.081 5 0 1.172.66 2.663 1.136 3.691l3.927 7.536 3.91-7.536c.476-1.028 1.154-2.444 1.154-3.69 0-2.605-2.273-5-5.046-5zm-.127 3.018h.127c1.09.009 1.97.893 1.973 1.982a1.975 1.975 0 0 1-1.973 1.973 1.976 1.976 0 0 1-1.972-1.973c0-1.042.806-1.907 1.845-1.982z\"/>\r\n <path d=\"M68.698-158.199h58.763v67.49H68.698z\" fill=\"#fff\"/>\r\n </g>\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/layers.svg": {
"created": "20161028202401905",
"modified": "20161031124011600",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/layers.svg",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"26\" width=\"26\"><path d=\"M.032 17.056l13-8 13 8-13 8-13-8\" fill=\"#b9b9b9\"/><path d=\"M.032 17.056l-.032.93 13 8 13-8 .032-.93-13 8z\" fill=\"#737373\"/><path d=\"M0 13.076l13-8 13 8-13 8-13-8\" fill=\"#cdcdcd\"/><path d=\"M0 13.076v.91l13 8 13-8v-.91l-13 8z\" fill=\"#737373\"/><path d=\"M0 8.986l13-8 13 8-13 8-13-8\" fill-opacity=\".585\" stroke=\"#797979\" stroke-width=\".1\" fill=\"#e9e9e9\"/><path d=\"M0 8.986v1l13 8 13-8v-1l-13 8z\" fill=\"#737373\"/></svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/marker.svg": {
"created": "20161028202401905",
"modified": "20161104204011600",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/marker.svg",
"marker_dim": "25 40 12.5 40",
"caption": "marker",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"40\" fill-rule=\"evenodd\">\r\n <path d=\"M6.279 4.463h12.625v14.5H6.279z\" fill=\"none\"/>\r\n <path class=\"leaflet-marker-colored\" d=\"M12.544.5C5.971.5.5 6.191.5 12.366c0 2.778 1.564 6.308 2.694 8.746L12.5 38.984l9.262-17.872c1.13-2.438 2.738-5.791 2.738-8.746C24.5 6.191 19.117.5 12.544.5zm0 7.155a4.714 4.714 0 0 1 4.679 4.71c0 2.588-2.095 4.663-4.679 4.679-2.584-.017-4.679-2.09-4.679-4.679a4.714 4.714 0 0 1 4.679-4.71z\" fill-opacity=\".8\" stroke=\"#fff\" stroke-linecap=\"round\" fill=\"$primary$\"/>\r\n <path d=\"M12.531 1.607c-5.944 0-10.938 5.219-10.938 10.75 0 2.359 1.443 5.832 2.563 8.25l.031.031L12.5 36.607l8.25-15.969.031-.031c1.135-2.448 2.625-5.706 2.625-8.25 0-5.538-4.931-10.75-10.875-10.75zm0 4.969c3.168.021 5.781 2.601 5.781 5.781 0 3.18-2.613 5.761-5.781 5.781-3.168-.02-5.75-2.61-5.75-5.781 0-3.172 2.582-5.761 5.75-5.781z\" fill=\"none\" stroke=\"#fff\" stroke-linecap=\"round\" stroke-opacity=\".9\"/>\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/markershadow.svg": {
"created": "20161028202401905",
"modified": "20161104204011600",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/markershadow.svg",
"marker_dim": "50 40 0 40",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"50\" height=\"40\">\r\n <filter id=\"blurFilter\" x=\"-50\" y=\"-50\" width=\"200\" height=\"200\">\r\n <feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"1.5\" />\r\n </filter>\r\n <path d=\"M46.53 0c-5.94 0-17.757 5.915-25.217 12.333-3.355 2.888-6.207 6.557-8.131 9.091L0 40l29.958-18.576c3.966-2.534 9.47-6.02 13.04-9.09C50.456 5.914 52.467 0 46.53 0zm-8.644 7.437a2.527 8.258 57.727 0 1-1.462 4.895c-3.127 2.69-7.526 4.847-9.88 4.864-2.314-.018-1.703-2.173 1.425-4.864a2.527 8.258 57.727 0 1 9.917-4.895z\" style=\"fill-opacity:.3; filter: url(#blurFilter)\"/>\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/pin.svg": {
"created": "20161028202401905",
"modified": "20161104204011600",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/pin.svg",
"marker_dim": "20 35 10 35",
"caption": "pin",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"35\">\r\n <defs>\r\n <linearGradient id=\"a\"><stop offset=\"0\" stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient>\r\n <radialGradient xlink:href=\"#a\" id=\"b\" cx=\"7\" cy=\"7\" fx=\"5\" fy=\"5\" r=\"8\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(-.16) scale(1.12)\"/>\r\n </defs>\r\n <g fill-rule=\"evenodd\">\r\n <path d=\"M9.25 20h1.5v15h-1.5z\"/>\r\n <circle class=\"leaflet-marker-colored\" cy=\"10\" cx=\"10\" r=\"10\" fill=\"$primary$\" fill-opacity=\".8\"/>\r\n <circle r=\"10\" cy=\"10\" cx=\"10\" fill=\"url(#b)\"/>\r\n </g>\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/pinshadow.svg": {
"created": "20170129162401910",
"modified": "20170129162401910",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/pinshadow.svg",
"marker_dim": "15 15 5 7",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"15\" height=\"15\">\r\n <filter id=\"blurFilter\" x=\"-50\" y=\"-50\" width=\"200\" height=\"200\">\r\n <feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"1.5\" />\r\n </filter>\r\n <ellipse cx=\"7.5\" cy=\"7.5\" rx=\"7.2\" ry=\"7.2\" style=\"stroke:none; fill-opacity:.3; filter: url(#blurFilter)\"/>\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/point.svg": {
"created": "20170129162401905",
"modified": "20170129162401905",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/point.svg",
"marker_dim": "15 15 7.5 7.5",
"caption": "point",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"15\" height=\"15\" fill-rule=\"evenodd\">\r\n <ellipse cx=\"7.5\" cy=\"7.5\" rx=\"7.5\" ry=\"7.5\" fill=\"none\" stroke=\"#fff\" stroke-width=\"1\" stroke-opacity=\".8\" />\r\n <ellipse class=\"leaflet-marker-colored\" cx=\"7.5\" cy=\"7.5\" rx=\"7\" ry=\"7\" fill-opacity=\".8\" fill=\"$primary$\" stroke=\"black\" stroke-width=\".5\" stroke-opacity=\".8\" />\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/images/pointshadow.svg": {
"created": "20170129162401910",
"modified": "20170129162401910",
"tags": "$:/tags/Image",
"title": "$:/plugins/sycom/leaflet/images/pointshadow.svg",
"marker_dim": "15 15 0 12",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"15\" height=\"15\">\r\n <filter id=\"blurFilter\" x=\"-50\" y=\"-50\" width=\"200\" height=\"200\">\r\n <feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"1.5\" />\r\n </filter>\r\n <ellipse cx=\"7.5\" cy=\"7.5\" rx=\"7.2\" ry=\"7.2\" style=\"stroke:none; fill-opacity:.3; filter: url(#blurFilter)\"/>\r\n</svg>\r\n"
},
"$:/plugins/sycom/leaflet/lib/tileLayers.json": {
"text": "[\r\n {\r\n \"id\": \"osmfr\",\r\n \"nom\": \"OSM France\",\r\n \"url\": \"http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png\",\r\n \"attrib\": \"fond par <a href='http://osm.org/copyright'>OSM</a>, licence <a href='http://creativecommons.org/licenses/by-sa/3.0'>CC BY SA</a>. Données ©Contributeurs <a href='http://openstreetmap.org'>OSM</a>, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"osm\",\r\n \"nom\": \"OpenStreetMap\",\r\n \"url\": \"http://{s}.tile.osm.org/{z}/{x}/{y}.png\",\r\n \"attrib\": \"Map tiles by ©<a href='http://osm.org/copyright'>OSM</a>, licence <a href='http://creativecommons.org/licenses/by-sa/3.0'>CC BY SA</a>. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"osmbw\",\r\n \"nom\": \"OSM N&B\",\r\n \"url\": \"http://www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png\",\r\n \"attrib\": \"Tiles hosted by wikimedia labs. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"sat\",\r\n \"nom\": \"Satellite Esri\",\r\n \"url\": \"http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}\",\r\n \"attrib\": \"©Map tiles by Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"natgeo\",\r\n \"nom\": \"National Geog.\",\r\n \"url\": \"http://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}\",\r\n \"attrib\": \"©Map tiles by Esri — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC\",\r\n \"zMin\": 1,\r\n \"zMax\": 12\r\n },\r\n {\r\n \"id\": \"toner\",\r\n \"nom\": \"Black Ink\",\r\n \"url\": \"http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png\",\r\n \"attrib\": \"Map tiles by <a href='http://stamen.com'>Stamen Design</a>, licence <a href='http://creativecommons.org/licenses/by/3.0'>CC BY 3.0</a>. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"water\",\r\n \"nom\": \"Water painting\",\r\n \"url\": \"http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.png\",\r\n \"attrib\": \"Map tiles by <a href='http://stamen.com'>Stamen Design</a>, licence <a href='http://creativecommons.org/licenses/by/3.0'>CC BY 3.0</a>. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"thunder\",\r\n \"nom\": \"Thunderforest\",\r\n \"url\": \"http://{s}.tile.thunderforest.com/landscape/{z}/{x}/{y}.png\",\r\n \"attrib\": \"Map tiles by <a href='http://thunderforest.com/'>Thunderforest</a>. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"dark\",\r\n \"nom\": \"Dark Matter\",\r\n \"url\": \"http://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png\",\r\n \"attrib\": \"©Map tiles by <a href='https://cartodb.com/basemaps/' target='_blank'>CartoDB</a>, under <a href='https://creativecommons.org/licenses/by/3.0/' target='_blank'>CC BY 3.0</a>. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n },\r\n {\r\n \"id\": \"positron\",\r\n \"nom\": \"Positron\",\r\n \"url\": \"http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png\",\r\n \"attrib\": \"©Map tiles by <a href='https://cartodb.com/basemaps/' target='_blank'>CartoDB</a>, under <a href='https://creativecommons.org/licenses/by/3.0/' target='_blank'>CC BY 3.0</a>. Data by ©<a href='http://openstreetmap.org'>OSM</a> contributors, licence <a href='http://opendatacommons.org/licenses/odbl/'>ODbL</a>.\",\r\n \"zMin\": 1,\r\n \"zMax\": 20\r\n }\r\n]\r\n",
"type": "application/json",
"title": "$:/plugins/sycom/leaflet/lib/tileLayers.json"
},
"$:/plugins/sycom/leaflet/lib/leaflet.css": {
"text": ".leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-map-pane svg,.leaflet-map-pane canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer{max-width:none!important}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-drag{-ms-touch-action:none;touch-action:none}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-tile{will-change:opacity}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;-o-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.leaflet-zoom-anim .leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,0.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,0.25,1);-o-transition:-o-transform .25s cubic-bezier(0,0,0.25,1);transition:transform .25s cubic-bezier(0,0,0.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline:0}.leaflet-container a{color:#0078a8}.leaflet-container a.leaflet-active{outline:2px solid orange}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,0.5)}.leaflet-container{font:12px/1.5 \"Helvetica Neue\",Arial,Helvetica,sans-serif}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,0.65);border-radius:4px}.leaflet-bar a,.leaflet-bar a:hover{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:black}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:0}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:bold 18px 'Lucida Console',Monaco,monospace;text-indent:1px}.leaflet-control-zoom-out{font-size:20px}.leaflet-touch .leaflet-control-zoom-in{font-size:22px}.leaflet-touch .leaflet-control-zoom-out{font-size:24px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,0.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(images/layers.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(images/layers-2x.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(images/marker-icon.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,0.7);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale{font-size:11px}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:0;line-height:1.1;padding:2px 5px 1px;font-size:11px;white-space:nowrap;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box;background:#fff;background:rgba(255,255,255,0.5)}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:0;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,0.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 19px;line-height:1.4}.leaflet-popup-content p{margin:18px 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px rgba(0,0,0,0.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;padding:4px 4px 0 0;border:0;text-align:center;width:18px;height:14px;font:16px/14px Tahoma,Verdana,sans-serif;color:#c3c3c3;text-decoration:none;font-weight:bold;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover{color:#999}.leaflet-popup-scrolled{overflow:auto;border-bottom:1px solid #ddd;border-top:1px solid #ddd}.leaflet-oldie .leaflet-popup-content-wrapper{zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:\"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)\";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678)}.leaflet-oldie .leaflet-popup-tip-container{margin-top:-1px}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,0.4)}.leaflet-tooltip.leaflet-clickable{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:\"\"}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}\r\n",
"type": "text/css",
"title": "$:/plugins/sycom/leaflet/lib/leaflet.css",
"tags": "$:/tags/Stylesheet"
},
"$:/plugins/sycom/leaflet/lib/leaflet-markercluster.css": {
"text": ".leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow{-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-in;-moz-transition:-moz-transform .3s ease-out,opacity .3s ease-in;-o-transition:-o-transform .3s ease-out,opacity .3s ease-in;transition:transform .3s ease-out,opacity .3s ease-in}.leaflet-cluster-spider-leg{-webkit-transition:-webkit-stroke-dashoffset .3s ease-out,-webkit-stroke-opacity .3s ease-in;-moz-transition:-moz-stroke-dashoffset .3s ease-out,-moz-stroke-opacity .3s ease-in;-o-transition:-o-stroke-dashoffset .3s ease-out,-o-stroke-opacity .3s ease-in;transition:stroke-dashoffset .3s ease-out,stroke-opacity .3s ease-in}\r\n",
"type": "text/css",
"title": "$:/plugins/sycom/leaflet/lib/leaflet-markercluster.css",
"tags": "$:/tags/Stylesheet"
},
"$:/plugins/sycom/leaflet/lib/leaflet.js": {
"text": "var L;if($tw.browser){\n/*\r\n Leaflet 1.0.1+ffcfcc1, a JS library for interactive maps. http://leafletjs.com\r\n (c) 2010-2016 Vladimir Agafonkin, (c) 2010-2011 CloudMade\r\n*/\r\n!function(t,e,i){function n(){var e=t.L;o.noConflict=function(){return t.L=e,this},t.L=o}var o={version:\"1.0.1+ffcfcc1\"};\"object\"==typeof module&&\"object\"==typeof module.exports?module.exports=o:\"function\"==typeof define&&define.amd&&define(o),\"undefined\"!=typeof t&&n(),o.Util={extend:function(t){var e,i,n,o;for(i=1,n=arguments.length;i<n;i++){o=arguments[i];for(e in o)t[e]=o[e]}return t},create:Object.create||function(){function t(){}return function(e){return t.prototype=e,new t}}(),bind:function(t,e){var i=Array.prototype.slice;if(t.bind)return t.bind.apply(t,i.call(arguments,1));var n=i.call(arguments,2);return function(){return t.apply(e,n.length?n.concat(i.call(arguments)):arguments)}},stamp:function(t){return t._leaflet_id=t._leaflet_id||++o.Util.lastId,t._leaflet_id},lastId:0,throttle:function(t,e,i){var n,o,s,r;return r=function(){n=!1,o&&(s.apply(i,o),o=!1)},s=function(){n?o=arguments:(t.apply(i,arguments),setTimeout(r,e),n=!0)}},wrapNum:function(t,e,i){var n=e[1],o=e[0],s=n-o;return t===n&&i?t:((t-o)%s+s)%s+o},falseFn:function(){return!1},formatNum:function(t,e){var i=Math.pow(10,e||5);return Math.round(t*i)/i},trim:function(t){return t.trim?t.trim():t.replace(/^\\s+|\\s+$/g,\"\")},splitWords:function(t){return o.Util.trim(t).split(/\\s+/)},setOptions:function(t,e){t.hasOwnProperty(\"options\")||(t.options=t.options?o.Util.create(t.options):{});for(var i in e)t.options[i]=e[i];return t.options},getParamString:function(t,e,i){var n=[];for(var o in t)n.push(encodeURIComponent(i?o.toUpperCase():o)+\"=\"+encodeURIComponent(t[o]));return(e&&e.indexOf(\"?\")!==-1?\"&\":\"?\")+n.join(\"&\")},template:function(t,e){return t.replace(o.Util.templateRe,function(t,n){var o=e[n];if(o===i)throw new Error(\"No value provided for variable \"+t);return\"function\"==typeof o&&(o=o(e)),o})},templateRe:/\\{ *([\\w_\\-]+) *\\}/g,isArray:Array.isArray||function(t){return\"[object Array]\"===Object.prototype.toString.call(t)},indexOf:function(t,e){for(var i=0;i<t.length;i++)if(t[i]===e)return i;return-1},emptyImageUrl:\"data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=\"},function(){function e(e){return t[\"webkit\"+e]||t[\"moz\"+e]||t[\"ms\"+e]}function i(e){var i=+new Date,o=Math.max(0,16-(i-n));return n=i+o,t.setTimeout(e,o)}var n=0,s=t.requestAnimationFrame||e(\"RequestAnimationFrame\")||i,r=t.cancelAnimationFrame||e(\"CancelAnimationFrame\")||e(\"CancelRequestAnimationFrame\")||function(e){t.clearTimeout(e)};o.Util.requestAnimFrame=function(e,n,r){return r&&s===i?void e.call(n):s.call(t,o.bind(e,n))},o.Util.cancelAnimFrame=function(e){e&&r.call(t,e)}}(),o.extend=o.Util.extend,o.bind=o.Util.bind,o.stamp=o.Util.stamp,o.setOptions=o.Util.setOptions,o.Class=function(){},o.Class.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments),this.callInitHooks()},i=e.__super__=this.prototype,n=o.Util.create(i);n.constructor=e,e.prototype=n;for(var s in this)this.hasOwnProperty(s)&&\"prototype\"!==s&&(e[s]=this[s]);return t.statics&&(o.extend(e,t.statics),delete t.statics),t.includes&&(o.Util.extend.apply(null,[n].concat(t.includes)),delete t.includes),n.options&&(t.options=o.Util.extend(o.Util.create(n.options),t.options)),o.extend(n,t),n._initHooks=[],n.callInitHooks=function(){if(!this._initHooksCalled){i.callInitHooks&&i.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,e=n._initHooks.length;t<e;t++)n._initHooks[t].call(this)}},e},o.Class.include=function(t){return o.extend(this.prototype,t),this},o.Class.mergeOptions=function(t){return o.extend(this.prototype.options,t),this},o.Class.addInitHook=function(t){var e=Array.prototype.slice.call(arguments,1),i=\"function\"==typeof t?t:function(){this[t].apply(this,e)};return this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(i),this},o.Evented=o.Class.extend({on:function(t,e,i){if(\"object\"==typeof t)for(var n in t)this._on(n,t[n],e);else{t=o.Util.splitWords(t);for(var s=0,r=t.length;s<r;s++)this._on(t[s],e,i)}return this},off:function(t,e,i){if(t)if(\"object\"==typeof t)for(var n in t)this._off(n,t[n],e);else{t=o.Util.splitWords(t);for(var s=0,r=t.length;s<r;s++)this._off(t[s],e,i)}else delete this._events;return this},_on:function(t,e,n){this._events=this._events||{};var o=this._events[t];o||(o=[],this._events[t]=o),n===this&&(n=i);for(var s={fn:e,ctx:n},r=o,a=0,h=r.length;a<h;a++)if(r[a].fn===e&&r[a].ctx===n)return;r.push(s),o.count++},_off:function(t,e,n){var s,r,a;if(this._events&&(s=this._events[t])){if(!e){for(r=0,a=s.length;r<a;r++)s[r].fn=o.Util.falseFn;return void delete this._events[t]}if(n===this&&(n=i),s)for(r=0,a=s.length;r<a;r++){var h=s[r];if(h.ctx===n&&h.fn===e)return h.fn=o.Util.falseFn,this._firingCount&&(this._events[t]=s=s.slice()),void s.splice(r,1)}}},fire:function(t,e,i){if(!this.listens(t,i))return this;var n=o.Util.extend({},e,{type:t,target:this});if(this._events){var s=this._events[t];if(s){this._firingCount=this._firingCount+1||1;for(var r=0,a=s.length;r<a;r++){var h=s[r];h.fn.call(h.ctx||this,n)}this._firingCount--}}return i&&this._propagateEvent(n),this},listens:function(t,e){var i=this._events&&this._events[t];if(i&&i.length)return!0;if(e)for(var n in this._eventParents)if(this._eventParents[n].listens(t,e))return!0;return!1},once:function(t,e,i){if(\"object\"==typeof t){for(var n in t)this.once(n,t[n],e);return this}var s=o.bind(function(){this.off(t,e,i).off(t,s,i)},this);return this.on(t,e,i).on(t,s,i)},addEventParent:function(t){return this._eventParents=this._eventParents||{},this._eventParents[o.stamp(t)]=t,this},removeEventParent:function(t){return this._eventParents&&delete this._eventParents[o.stamp(t)],this},_propagateEvent:function(t){for(var e in this._eventParents)this._eventParents[e].fire(t.type,o.extend({layer:t.target},t),!0)}});var s=o.Evented.prototype;s.addEventListener=s.on,s.removeEventListener=s.clearAllEventListeners=s.off,s.addOneTimeEventListener=s.once,s.fireEvent=s.fire,s.hasEventListeners=s.listens,o.Mixin={Events:s},function(){var i=navigator.userAgent.toLowerCase(),n=e.documentElement,s=\"ActiveXObject\"in t,r=i.indexOf(\"webkit\")!==-1,a=i.indexOf(\"phantom\")!==-1,h=i.search(\"android [23]\")!==-1,l=i.indexOf(\"chrome\")!==-1,u=i.indexOf(\"gecko\")!==-1&&!r&&!t.opera&&!s,c=0===navigator.platform.indexOf(\"Win\"),d=\"undefined\"!=typeof orientation||i.indexOf(\"mobile\")!==-1,_=!t.PointerEvent&&t.MSPointerEvent,m=t.PointerEvent||_,p=s&&\"transition\"in n.style,f=\"WebKitCSSMatrix\"in t&&\"m11\"in new t.WebKitCSSMatrix&&!h,g=\"MozPerspective\"in n.style,v=\"OTransition\"in n.style,y=!t.L_NO_TOUCH&&(m||\"ontouchstart\"in t||t.DocumentTouch&&e instanceof t.DocumentTouch);o.Browser={ie:s,ielt9:s&&!e.addEventListener,edge:\"msLaunchUri\"in navigator&&!(\"documentMode\"in e),webkit:r,gecko:u,android:i.indexOf(\"android\")!==-1,android23:h,chrome:l,safari:!l&&i.indexOf(\"safari\")!==-1,win:c,ie3d:p,webkit3d:f,gecko3d:g,opera12:v,any3d:!t.L_DISABLE_3D&&(p||f||g)&&!v&&!a,mobile:d,mobileWebkit:d&&r,mobileWebkit3d:d&&f,mobileOpera:d&&t.opera,mobileGecko:d&&u,touch:!!y,msPointer:!!_,pointer:!!m,retina:(t.devicePixelRatio||t.screen.deviceXDPI/t.screen.logicalXDPI)>1}}(),o.Point=function(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e},o.Point.prototype={clone:function(){return new o.Point(this.x,this.y)},add:function(t){return this.clone()._add(o.point(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(o.point(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new o.Point(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new o.Point(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},distanceTo:function(t){t=o.point(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=o.point(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=o.point(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return\"Point(\"+o.Util.formatNum(this.x)+\", \"+o.Util.formatNum(this.y)+\")\"}},o.point=function(t,e,n){return t instanceof o.Point?t:o.Util.isArray(t)?new o.Point(t[0],t[1]):t===i||null===t?t:\"object\"==typeof t&&\"x\"in t&&\"y\"in t?new o.Point(t.x,t.y):new o.Point(t,e,n)},o.Bounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;n<o;n++)this.extend(i[n])},o.Bounds.prototype={extend:function(t){return t=o.point(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new o.Point((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new o.Point(this.min.x,this.max.y)},getTopRight:function(){return new o.Point(this.max.x,this.min.y)},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var e,i;return t=\"number\"==typeof t[0]||t instanceof o.Point?o.point(t):o.bounds(t),t instanceof o.Bounds?(e=t.min,i=t.max):e=i=t,e.x>=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,r=s.x>=e.x&&n.x<=i.x,a=s.y>=e.y&&n.y<=i.y;return r&&a},overlaps:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,r=s.x>e.x&&n.x<i.x,a=s.y>e.y&&n.y<i.y;return r&&a},isValid:function(){return!(!this.min||!this.max)}},o.bounds=function(t,e){return!t||t instanceof o.Bounds?t:new o.Bounds(t,e)},o.Transformation=function(t,e,i,n){this._a=t,this._b=e,this._c=i,this._d=n},o.Transformation.prototype={transform:function(t,e){return this._transform(t.clone(),e)},_transform:function(t,e){return e=e||1,t.x=e*(this._a*t.x+this._b),t.y=e*(this._c*t.y+this._d),t},untransform:function(t,e){return e=e||1,new o.Point((t.x/e-this._b)/this._a,(t.y/e-this._d)/this._c)}},o.DomUtil={get:function(t){return\"string\"==typeof t?e.getElementById(t):t},getStyle:function(t,i){var n=t.style[i]||t.currentStyle&&t.currentStyle[i];if((!n||\"auto\"===n)&&e.defaultView){var o=e.defaultView.getComputedStyle(t,null);n=o?o[i]:null}return\"auto\"===n?null:n},create:function(t,i,n){var o=e.createElement(t);return o.className=i||\"\",n&&n.appendChild(o),o},remove:function(t){var e=t.parentNode;e&&e.removeChild(t)},empty:function(t){for(;t.firstChild;)t.removeChild(t.firstChild)},toFront:function(t){t.parentNode.appendChild(t)},toBack:function(t){var e=t.parentNode;e.insertBefore(t,e.firstChild)},hasClass:function(t,e){if(t.classList!==i)return t.classList.contains(e);var n=o.DomUtil.getClass(t);return n.length>0&&new RegExp(\"(^|\\\\s)\"+e+\"(\\\\s|$)\").test(n)},addClass:function(t,e){if(t.classList!==i)for(var n=o.Util.splitWords(e),s=0,r=n.length;s<r;s++)t.classList.add(n[s]);else if(!o.DomUtil.hasClass(t,e)){var a=o.DomUtil.getClass(t);o.DomUtil.setClass(t,(a?a+\" \":\"\")+e)}},removeClass:function(t,e){t.classList!==i?t.classList.remove(e):o.DomUtil.setClass(t,o.Util.trim((\" \"+o.DomUtil.getClass(t)+\" \").replace(\" \"+e+\" \",\" \")))},setClass:function(t,e){t.className.baseVal===i?t.className=e:t.className.baseVal=e},getClass:function(t){return t.className.baseVal===i?t.className:t.className.baseVal},setOpacity:function(t,e){\"opacity\"in t.style?t.style.opacity=e:\"filter\"in t.style&&o.DomUtil._setOpacityIE(t,e)},_setOpacityIE:function(t,e){var i=!1,n=\"DXImageTransform.Microsoft.Alpha\";try{i=t.filters.item(n)}catch(t){if(1===e)return}e=Math.round(100*e),i?(i.Enabled=100!==e,i.Opacity=e):t.style.filter+=\" progid:\"+n+\"(opacity=\"+e+\")\"},testProp:function(t){for(var i=e.documentElement.style,n=0;n<t.length;n++)if(t[n]in i)return t[n];return!1},setTransform:function(t,e,i){var n=e||new o.Point(0,0);t.style[o.DomUtil.TRANSFORM]=(o.Browser.ie3d?\"translate(\"+n.x+\"px,\"+n.y+\"px)\":\"translate3d(\"+n.x+\"px,\"+n.y+\"px,0)\")+(i?\" scale(\"+i+\")\":\"\")},setPosition:function(t,e){t._leaflet_pos=e,o.Browser.any3d?o.DomUtil.setTransform(t,e):(t.style.left=e.x+\"px\",t.style.top=e.y+\"px\")},getPosition:function(t){return t._leaflet_pos||new o.Point(0,0)}},function(){o.DomUtil.TRANSFORM=o.DomUtil.testProp([\"transform\",\"WebkitTransform\",\"OTransform\",\"MozTransform\",\"msTransform\"]);var i=o.DomUtil.TRANSITION=o.DomUtil.testProp([\"webkitTransition\",\"transition\",\"OTransition\",\"MozTransition\",\"msTransition\"]);if(o.DomUtil.TRANSITION_END=\"webkitTransition\"===i||\"OTransition\"===i?i+\"End\":\"transitionend\",\"onselectstart\"in e)o.DomUtil.disableTextSelection=function(){o.DomEvent.on(t,\"selectstart\",o.DomEvent.preventDefault)},o.DomUtil.enableTextSelection=function(){o.DomEvent.off(t,\"selectstart\",o.DomEvent.preventDefault)};else{var n=o.DomUtil.testProp([\"userSelect\",\"WebkitUserSelect\",\"OUserSelect\",\"MozUserSelect\",\"msUserSelect\"]);o.DomUtil.disableTextSelection=function(){if(n){var t=e.documentElement.style;this._userSelect=t[n],t[n]=\"none\"}},o.DomUtil.enableTextSelection=function(){n&&(e.documentElement.style[n]=this._userSelect,delete this._userSelect)}}o.DomUtil.disableImageDrag=function(){o.DomEvent.on(t,\"dragstart\",o.DomEvent.preventDefault)},o.DomUtil.enableImageDrag=function(){o.DomEvent.off(t,\"dragstart\",o.DomEvent.preventDefault)},o.DomUtil.preventOutline=function(e){for(;e.tabIndex===-1;)e=e.parentNode;e&&e.style&&(o.DomUtil.restoreOutline(),this._outlineElement=e,this._outlineStyle=e.style.outline,e.style.outline=\"none\",o.DomEvent.on(t,\"keydown\",o.DomUtil.restoreOutline,this))},o.DomUtil.restoreOutline=function(){this._outlineElement&&(this._outlineElement.style.outline=this._outlineStyle,delete this._outlineElement,delete this._outlineStyle,o.DomEvent.off(t,\"keydown\",o.DomUtil.restoreOutline,this))}}(),o.LatLng=function(t,e,n){if(isNaN(t)||isNaN(e))throw new Error(\"Invalid LatLng object: (\"+t+\", \"+e+\")\");this.lat=+t,this.lng=+e,n!==i&&(this.alt=+n)},o.LatLng.prototype={equals:function(t,e){if(!t)return!1;t=o.latLng(t);var n=Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng));return n<=(e===i?1e-9:e)},toString:function(t){return\"LatLng(\"+o.Util.formatNum(this.lat,t)+\", \"+o.Util.formatNum(this.lng,t)+\")\"},distanceTo:function(t){return o.CRS.Earth.distance(this,o.latLng(t))},wrap:function(){return o.CRS.Earth.wrapLatLng(this)},toBounds:function(t){var e=180*t/40075017,i=e/Math.cos(Math.PI/180*this.lat);return o.latLngBounds([this.lat-e,this.lng-i],[this.lat+e,this.lng+i])},clone:function(){return new o.LatLng(this.lat,this.lng,this.alt)}},o.latLng=function(t,e,n){return t instanceof o.LatLng?t:o.Util.isArray(t)&&\"object\"!=typeof t[0]?3===t.length?new o.LatLng(t[0],t[1],t[2]):2===t.length?new o.LatLng(t[0],t[1]):null:t===i||null===t?t:\"object\"==typeof t&&\"lat\"in t?new o.LatLng(t.lat,\"lng\"in t?t.lng:t.lon,t.alt):e===i?null:new o.LatLng(t,e,n)},o.LatLngBounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;n<o;n++)this.extend(i[n])},o.LatLngBounds.prototype={extend:function(t){var e,i,n=this._southWest,s=this._northEast;if(t instanceof o.LatLng)e=t,i=t;else{if(!(t instanceof o.LatLngBounds))return t?this.extend(o.latLng(t)||o.latLngBounds(t)):this;if(e=t._southWest,i=t._northEast,!e||!i)return this}return n||s?(n.lat=Math.min(e.lat,n.lat),n.lng=Math.min(e.lng,n.lng),s.lat=Math.max(i.lat,s.lat),s.lng=Math.max(i.lng,s.lng)):(this._southWest=new o.LatLng(e.lat,e.lng),this._northEast=new o.LatLng(i.lat,i.lng)),this},pad:function(t){var e=this._southWest,i=this._northEast,n=Math.abs(e.lat-i.lat)*t,s=Math.abs(e.lng-i.lng)*t;return new o.LatLngBounds(new o.LatLng(e.lat-n,e.lng-s),new o.LatLng(i.lat+n,i.lng+s))},getCenter:function(){return new o.LatLng((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new o.LatLng(this.getNorth(),this.getWest())},getSouthEast:function(){return new o.LatLng(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t=\"number\"==typeof t[0]||t instanceof o.LatLng?o.latLng(t):o.latLngBounds(t);var e,i,n=this._southWest,s=this._northEast;return t instanceof o.LatLngBounds?(e=t.getSouthWest(),i=t.getNorthEast()):e=i=t,e.lat>=n.lat&&i.lat<=s.lat&&e.lng>=n.lng&&i.lng<=s.lng},intersects:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),r=s.lat>=e.lat&&n.lat<=i.lat,a=s.lng>=e.lng&&n.lng<=i.lng;return r&&a},overlaps:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),r=s.lat>e.lat&&n.lat<i.lat,a=s.lng>e.lng&&n.lng<i.lng;return r&&a},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(\",\")},equals:function(t){return!!t&&(t=o.latLngBounds(t),this._southWest.equals(t.getSouthWest())&&this._northEast.equals(t.getNorthEast()))},isValid:function(){return!(!this._southWest||!this._northEast)}},o.latLngBounds=function(t,e){return t instanceof o.LatLngBounds?t:new o.LatLngBounds(t,e)},o.Projection={},o.Projection.LonLat={project:function(t){return new o.Point(t.lng,t.lat)},unproject:function(t){return new o.LatLng(t.y,t.x)},bounds:o.bounds([-180,-90],[180,90])},o.Projection.SphericalMercator={R:6378137,MAX_LATITUDE:85.0511287798,project:function(t){var e=Math.PI/180,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=Math.sin(n*e);return new o.Point(this.R*t.lng*e,this.R*Math.log((1+s)/(1-s))/2)},unproject:function(t){var e=180/Math.PI;return new o.LatLng((2*Math.atan(Math.exp(t.y/this.R))-Math.PI/2)*e,t.x*e/this.R)},bounds:function(){var t=6378137*Math.PI;return o.bounds([-t,-t],[t,t])}()},o.CRS={latLngToPoint:function(t,e){var i=this.projection.project(t),n=this.scale(e);return this.transformation._transform(i,n)},pointToLatLng:function(t,e){var i=this.scale(e),n=this.transformation.untransform(t,i);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},unproject:function(t){return this.projection.unproject(t)},scale:function(t){return 256*Math.pow(2,t)},zoom:function(t){return Math.log(t/256)/Math.LN2},getProjectedBounds:function(t){if(this.infinite)return null;var e=this.projection.bounds,i=this.scale(t),n=this.transformation.transform(e.min,i),s=this.transformation.transform(e.max,i);return o.bounds(n,s)},infinite:!1,wrapLatLng:function(t){var e=this.wrapLng?o.Util.wrapNum(t.lng,this.wrapLng,!0):t.lng,i=this.wrapLat?o.Util.wrapNum(t.lat,this.wrapLat,!0):t.lat,n=t.alt;return o.latLng(i,e,n)}},o.CRS.Simple=o.extend({},o.CRS,{projection:o.Projection.LonLat,transformation:new o.Transformation(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,e){var i=e.lng-t.lng,n=e.lat-t.lat;return Math.sqrt(i*i+n*n)},infinite:!0}),o.CRS.Earth=o.extend({},o.CRS,{wrapLng:[-180,180],R:6371e3,distance:function(t,e){var i=Math.PI/180,n=t.lat*i,o=e.lat*i,s=Math.sin(n)*Math.sin(o)+Math.cos(n)*Math.cos(o)*Math.cos((e.lng-t.lng)*i);return this.R*Math.acos(Math.min(s,1))}}),o.CRS.EPSG3857=o.extend({},o.CRS.Earth,{code:\"EPSG:3857\",projection:o.Projection.SphericalMercator,transformation:function(){var t=.5/(Math.PI*o.Projection.SphericalMercator.R);return new o.Transformation(t,.5,-t,.5)}()}),o.CRS.EPSG900913=o.extend({},o.CRS.EPSG3857,{code:\"EPSG:900913\"}),o.CRS.EPSG4326=o.extend({},o.CRS.Earth,{code:\"EPSG:4326\",projection:o.Projection.LonLat,transformation:new o.Transformation(1/180,1,-1/180,.5)}),o.Map=o.Evented.extend({options:{crs:o.CRS.EPSG3857,center:i,zoom:i,minZoom:i,maxZoom:i,layers:[],maxBounds:i,renderer:i,fadeAnimation:!0,markerZoomAnimation:!0,transform3DLimit:8388608,zoomSnap:1,zoomDelta:1,trackResize:!0},initialize:function(t,e){e=o.setOptions(this,e),this._initContainer(t),this._initLayout(),this._onResize=o.bind(this._onResize,this),this._initEvents(),e.maxBounds&&this.setMaxBounds(e.maxBounds),e.zoom!==i&&(this._zoom=this._limitZoom(e.zoom)),e.center&&e.zoom!==i&&this.setView(o.latLng(e.center),e.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._sizeChanged=!0,this.callInitHooks(),this._addLayers(this.options.layers)},setView:function(t,e){return e=e===i?this.getZoom():e,this._resetView(o.latLng(t),e),this},setZoom:function(t,e){return this._loaded?this.setView(this.getCenter(),t,{zoom:e}):(this._zoom=t,this)},zoomIn:function(t,e){return t=t||(o.Browser.any3d?this.options.zoomDelta:1),this.setZoom(this._zoom+t,e)},zoomOut:function(t,e){return t=t||(o.Browser.any3d?this.options.zoomDelta:1),this.setZoom(this._zoom-t,e)},setZoomAround:function(t,e,i){var n=this.getZoomScale(e),s=this.getSize().divideBy(2),r=t instanceof o.Point?t:this.latLngToContainerPoint(t),a=r.subtract(s).multiplyBy(1-1/n),h=this.containerPointToLatLng(s.add(a));return this.setView(h,e,{zoom:i})},_getBoundsCenterZoom:function(t,e){e=e||{},t=t.getBounds?t.getBounds():o.latLngBounds(t);var i=o.point(e.paddingTopLeft||e.padding||[0,0]),n=o.point(e.paddingBottomRight||e.padding||[0,0]),s=this.getBoundsZoom(t,!1,i.add(n));s=\"number\"==typeof e.maxZoom?Math.min(e.maxZoom,s):s;var r=n.subtract(i).divideBy(2),a=this.project(t.getSouthWest(),s),h=this.project(t.getNorthEast(),s),l=this.unproject(a.add(h).divideBy(2).add(r),s);return{center:l,zoom:s}},fitBounds:function(t,e){if(t=o.latLngBounds(t),!t.isValid())throw new Error(\"Bounds are not valid.\");var i=this._getBoundsCenterZoom(t,e);return this.setView(i.center,i.zoom,e)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,e){return this.setView(t,this._zoom,{pan:e})},panBy:function(t){return this.fire(\"movestart\"),this._rawPanBy(o.point(t)),this.fire(\"move\"),this.fire(\"moveend\")},setMaxBounds:function(t){return t=o.latLngBounds(t),t.isValid()?(this.options.maxBounds&&this.off(\"moveend\",this._panInsideMaxBounds),this.options.maxBounds=t,this._loaded&&this._panInsideMaxBounds(),this.on(\"moveend\",this._panInsideMaxBounds)):(this.options.maxBounds=null,this.off(\"moveend\",this._panInsideMaxBounds))},setMinZoom:function(t){return this.options.minZoom=t,this._loaded&&this.getZoom()<this.options.minZoom?this.setZoom(t):this},setMaxZoom:function(t){return this.options.maxZoom=t,this._loaded&&this.getZoom()>this.options.maxZoom?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),n=this._limitCenter(i,this._zoom,o.latLngBounds(t));return i.equals(n)||this.panTo(n,e),this._enforcingBounds=!1,this},invalidateSize:function(t){if(!this._loaded)return this;t=o.extend({animate:!1,pan:!0},t===!0?{animate:!0}:t);var e=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var i=this.getSize(),n=e.divideBy(2).round(),s=i.divideBy(2).round(),r=n.subtract(s);return r.x||r.y?(t.animate&&t.pan?this.panBy(r):(t.pan&&this._rawPanBy(r),this.fire(\"move\"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(o.bind(this.fire,this,\"moveend\"),200)):this.fire(\"moveend\")),this.fire(\"resize\",{oldSize:e,newSize:i})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire(\"viewreset\"),this._stop()},addHandler:function(t,e){if(!e)return this;var i=this[t]=new e(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){if(this._initEvents(!0),this._containerId!==this._container._leaflet_id)throw new Error(\"Map container is being reused by another instance\");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=i,this._containerId=i}o.DomUtil.remove(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this._loaded&&this.fire(\"unload\");for(var t in this._layers)this._layers[t].remove();return this},createPane:function(t,e){var i=\"leaflet-pane\"+(t?\" leaflet-\"+t.replace(\"Pane\",\"\")+\"-pane\":\"\"),n=o.DomUtil.create(\"div\",i,e||this._mapPane);return t&&(this._panes[t]=n),n},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds(),e=this.unproject(t.getBottomLeft()),i=this.unproject(t.getTopRight());return new o.LatLngBounds(e,i)},getMinZoom:function(){return this.options.minZoom===i?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===i?this._layersMaxZoom===i?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=o.latLngBounds(t),i=o.point(i||[0,0]);var n=this.getZoom()||0,s=this.getMinZoom(),r=this.getMaxZoom(),a=t.getNorthWest(),h=t.getSouthEast(),l=this.getSize().subtract(i),u=this.project(h,n).subtract(this.project(a,n)),c=o.Browser.any3d?this.options.zoomSnap:1,d=Math.min(l.x/u.x,l.y/u.y);return n=this.getScaleZoom(d,n),c&&(n=Math.round(n/(c/100))*(c/100),n=e?Math.ceil(n/c)*c:Math.floor(n/c)*c),Math.max(s,Math.min(r,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new o.Point(this._container.clientWidth,this._container.clientHeight),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){var i=this._getTopLeftPoint(t,e);return new o.Bounds(i,i.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(t===i?this.getZoom():t)},getPane:function(t){return\"string\"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var n=this.options.crs;return e=e===i?this._zoom:e,n.scale(t)/n.scale(e)},getScaleZoom:function(t,e){var n=this.options.crs;e=e===i?this._zoom:e;var o=n.zoom(t*n.scale(e));return isNaN(o)?1/0:o},project:function(t,e){return e=e===i?this._zoom:e,this.options.crs.latLngToPoint(o.latLng(t),e)},unproject:function(t,e){return e=e===i?this._zoom:e,this.options.crs.pointToLatLng(o.point(t),e)},layerPointToLatLng:function(t){var e=o.point(t).add(this.getPixelOrigin());return this.unproject(e)},latLngToLayerPoint:function(t){var e=this.project(o.latLng(t))._round();return e._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(o.latLng(t))},distance:function(t,e){return this.options.crs.distance(o.latLng(t),o.latLng(e))},containerPointToLayerPoint:function(t){return o.point(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return o.point(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var e=this.containerPointToLayerPoint(o.point(t));return this.layerPointToLatLng(e)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(o.latLng(t)))},mouseEventToContainerPoint:function(t){return o.DomEvent.getMousePosition(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var e=this._container=o.DomUtil.get(t);if(!e)throw new Error(\"Map container not found.\");if(e._leaflet_id)throw new Error(\"Map container is already initialized.\");o.DomEvent.addListener(e,\"scroll\",this._onScroll,this),this._containerId=o.Util.stamp(e)},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&o.Browser.any3d,o.DomUtil.addClass(t,\"leaflet-container\"+(o.Browser.touch?\" leaflet-touch\":\"\")+(o.Browser.retina?\" leaflet-retina\":\"\")+(o.Browser.ielt9?\" leaflet-oldie\":\"\")+(o.Browser.safari?\" leaflet-safari\":\"\")+(this._fadeAnimated?\" leaflet-fade-anim\":\"\"));var e=o.DomUtil.getStyle(t,\"position\");\"absolute\"!==e&&\"relative\"!==e&&\"fixed\"!==e&&(t.style.position=\"relative\"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane(\"mapPane\",this._container),o.DomUtil.setPosition(this._mapPane,new o.Point(0,0)),this.createPane(\"tilePane\"),this.createPane(\"shadowPane\"),this.createPane(\"overlayPane\"),this.createPane(\"markerPane\"),this.createPane(\"tooltipPane\"),this.createPane(\"popupPane\"),this.options.markerZoomAnimation||(o.DomUtil.addClass(t.markerPane,\"leaflet-zoom-hide\"),o.DomUtil.addClass(t.shadowPane,\"leaflet-zoom-hide\"))},_resetView:function(t,e){o.DomUtil.setPosition(this._mapPane,new o.Point(0,0));var i=!this._loaded;this._loaded=!0,e=this._limitZoom(e),this.fire(\"viewprereset\");var n=this._zoom!==e;this._moveStart(n)._move(t,e)._moveEnd(n),this.fire(\"viewreset\"),i&&this.fire(\"load\")},_moveStart:function(t){return t&&this.fire(\"zoomstart\"),this.fire(\"movestart\")},_move:function(t,e,n){e===i&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),(o||n&&n.pinch)&&this.fire(\"zoom\",n),this.fire(\"move\",n)},_moveEnd:function(t){return t&&this.fire(\"zoomend\"),this.fire(\"moveend\")},_stop:function(){return o.Util.cancelAnimFrame(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){o.DomUtil.setPosition(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error(\"Set map center and zoom first.\")},_initEvents:function(e){if(o.DomEvent){this._targets={},this._targets[o.stamp(this._container)]=this;var i=e?\"off\":\"on\";o.DomEvent[i](this._container,\"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress\",this._handleDOMEvent,this),this.options.trackResize&&o.DomEvent[i](t,\"resize\",this._onResize,this),o.Browser.any3d&&this.options.transform3DLimit&&this[i](\"moveend\",this._onMoveEnd)}},_onResize:function(){o.Util.cancelAnimFrame(this._resizeRequest),this._resizeRequest=o.Util.requestAnimFrame(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i,n=[],s=\"mouseout\"===e||\"mouseover\"===e,r=t.target||t.srcElement,a=!1;r;){if(i=this._targets[o.stamp(r)],i&&(\"click\"===e||\"preclick\"===e)&&!t._simulated&&this._draggableMoved(i)){a=!0;break}if(i&&i.listens(e,!0)){if(s&&!o.DomEvent._isExternalTarget(r,t))break;if(n.push(i),s)break}if(r===this._container)break;r=r.parentNode}return n.length||a||s||!o.DomEvent._isExternalTarget(r,t)||(n=[this]),n},_handleDOMEvent:function(t){if(this._loaded&&!o.DomEvent._skipped(t)){var e=\"keypress\"===t.type&&13===t.keyCode?\"click\":t.type;\"mousedown\"===e&&o.DomUtil.preventOutline(t.target||t.srcElement),this._fireDOMEvent(t,e)}},_fireDOMEvent:function(t,e,i){if(\"click\"===t.type){var n=o.Util.extend({},t);n.type=\"preclick\",this._fireDOMEvent(n,n.type,i)}if(!t._stopped&&(i=(i||[]).concat(this._findEventTargets(t,e)),i.length)){var s=i[0];\"contextmenu\"===e&&s.listens(e,!0)&&o.DomEvent.preventDefault(t);var r={originalEvent:t};if(\"keypress\"!==t.type){var a=s instanceof o.Marker;r.containerPoint=a?this.latLngToContainerPoint(s.getLatLng()):this.mouseEventToContainerPoint(t),r.layerPoint=this.containerPointToLayerPoint(r.containerPoint),r.latlng=a?s.getLatLng():this.layerPointToLatLng(r.layerPoint);\r\n}for(var h=0;h<i.length;h++)if(i[h].fire(e,r,!0),r.originalEvent._stopped||i[h].options.nonBubblingEvents&&o.Util.indexOf(i[h].options.nonBubblingEvents,e)!==-1)return}},_draggableMoved:function(t){return t=t.dragging&&t.dragging.enabled()?t:this,t.dragging&&t.dragging.moved()||this.boxZoom&&this.boxZoom.moved()},_clearHandlers:function(){for(var t=0,e=this._handlers.length;t<e;t++)this._handlers[t].disable()},whenReady:function(t,e){return this._loaded?t.call(e||this,{target:this}):this.on(\"load\",t,e),this},_getMapPanePos:function(){return o.DomUtil.getPosition(this._mapPane)||new o.Point(0,0)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(t,e){var n=t&&e!==i?this._getNewPixelOrigin(t,e):this.getPixelOrigin();return n.subtract(this._getMapPanePos())},_getNewPixelOrigin:function(t,e){var i=this.getSize()._divideBy(2);return this.project(t,e)._subtract(i)._add(this._getMapPanePos())._round()},_latLngToNewLayerPoint:function(t,e,i){var n=this._getNewPixelOrigin(i,e);return this.project(t,e)._subtract(n)},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,e,i){if(!i)return t;var n=this.project(t,e),s=this.getSize().divideBy(2),r=new o.Bounds(n.subtract(s),n.add(s)),a=this._getBoundsOffset(r,i,e);return a.round().equals([0,0])?t:this.unproject(n.add(a),e)},_limitOffset:function(t,e){if(!e)return t;var i=this.getPixelBounds(),n=new o.Bounds(i.min.add(t),i.max.add(t));return t.add(this._getBoundsOffset(n,e))},_getBoundsOffset:function(t,e,i){var n=o.bounds(this.project(e.getNorthEast(),i),this.project(e.getSouthWest(),i)),s=n.min.subtract(t.min),r=n.max.subtract(t.max),a=this._rebound(s.x,-r.x),h=this._rebound(s.y,-r.y);return new o.Point(a,h)},_rebound:function(t,e){return t+e>0?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom(),n=o.Browser.any3d?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(e,Math.min(i,t))}}),o.map=function(t,e){return new o.Map(t,e)},o.Layer=o.Evented.extend({options:{pane:\"overlayPane\",nonBubblingEvents:[]},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[o.stamp(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[o.stamp(t)],this},_layerAdd:function(t){var e=t.target;if(e.hasLayer(this)){if(this._map=e,this._zoomAnimated=e._zoomAnimated,this.getEvents){var i=this.getEvents();e.on(i,this),this.once(\"remove\",function(){e.off(i,this)},this)}this.onAdd(e),this.getAttribution&&this._map.attributionControl&&this._map.attributionControl.addAttribution(this.getAttribution()),this.fire(\"add\"),e.fire(\"layeradd\",{layer:this})}}}),o.Map.include({addLayer:function(t){var e=o.stamp(t);return this._layers[e]?this:(this._layers[e]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t),this)},removeLayer:function(t){var e=o.stamp(t);return this._layers[e]?(this._loaded&&t.onRemove(this),t.getAttribution&&this.attributionControl&&this.attributionControl.removeAttribution(t.getAttribution()),delete this._layers[e],this._loaded&&(this.fire(\"layerremove\",{layer:t}),t.fire(\"remove\")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return!!t&&o.stamp(t)in this._layers},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},_addLayers:function(t){t=t?o.Util.isArray(t)?t:[t]:[];for(var e=0,i=t.length;e<i;e++)this.addLayer(t[e])},_addZoomLimit:function(t){!isNaN(t.options.maxZoom)&&isNaN(t.options.minZoom)||(this._zoomBoundLayers[o.stamp(t)]=t,this._updateZoomLevels())},_removeZoomLimit:function(t){var e=o.stamp(t);this._zoomBoundLayers[e]&&(delete this._zoomBoundLayers[e],this._updateZoomLevels())},_updateZoomLevels:function(){var t=1/0,e=-(1/0),n=this._getZoomSpan();for(var o in this._zoomBoundLayers){var s=this._zoomBoundLayers[o].options;t=s.minZoom===i?t:Math.min(t,s.minZoom),e=s.maxZoom===i?e:Math.max(e,s.maxZoom)}this._layersMaxZoom=e===-(1/0)?i:e,this._layersMinZoom=t===1/0?i:t,n!==this._getZoomSpan()&&this.fire(\"zoomlevelschange\")}}),o.Projection.Mercator={R:6378137,R_MINOR:6356752.314245179,bounds:o.bounds([-20037508.34279,-15496570.73972],[20037508.34279,18764656.23138]),project:function(t){var e=Math.PI/180,i=this.R,n=t.lat*e,s=this.R_MINOR/i,r=Math.sqrt(1-s*s),a=r*Math.sin(n),h=Math.tan(Math.PI/4-n/2)/Math.pow((1-a)/(1+a),r/2);return n=-i*Math.log(Math.max(h,1e-10)),new o.Point(t.lng*e*i,n)},unproject:function(t){for(var e,i=180/Math.PI,n=this.R,s=this.R_MINOR/n,r=Math.sqrt(1-s*s),a=Math.exp(-t.y/n),h=Math.PI/2-2*Math.atan(a),l=0,u=.1;l<15&&Math.abs(u)>1e-7;l++)e=r*Math.sin(h),e=Math.pow((1-e)/(1+e),r/2),u=Math.PI/2-2*Math.atan(a*e)-h,h+=u;return new o.LatLng(h*i,t.x*i/n)}},o.CRS.EPSG3395=o.extend({},o.CRS.Earth,{code:\"EPSG:3395\",projection:o.Projection.Mercator,transformation:function(){var t=.5/(Math.PI*o.Projection.Mercator.R);return new o.Transformation(t,.5,-t,.5)}()}),o.GridLayer=o.Layer.extend({options:{tileSize:256,opacity:1,updateWhenIdle:o.Browser.mobile,updateWhenZooming:!0,updateInterval:200,attribution:null,zIndex:1,bounds:null,minZoom:0,maxZoom:i,noWrap:!1,pane:\"tilePane\",className:\"\",keepBuffer:2},initialize:function(t){o.setOptions(this,t)},onAdd:function(){this._initContainer(),this._levels={},this._tiles={},this._resetView(),this._update()},beforeAdd:function(t){t._addZoomLimit(this)},onRemove:function(t){this._removeAllTiles(),o.DomUtil.remove(this._container),t._removeZoomLimit(this),this._container=null,this._tileZoom=null},bringToFront:function(){return this._map&&(o.DomUtil.toFront(this._container),this._setAutoZIndex(Math.max)),this},bringToBack:function(){return this._map&&(o.DomUtil.toBack(this._container),this._setAutoZIndex(Math.min)),this},getAttribution:function(){return this.options.attribution},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},isLoading:function(){return this._loading},redraw:function(){return this._map&&(this._removeAllTiles(),this._update()),this},getEvents:function(){var t={viewprereset:this._invalidateAll,viewreset:this._resetView,zoom:this._resetView,moveend:this._onMoveEnd};return this.options.updateWhenIdle||(this._onMove||(this._onMove=o.Util.throttle(this._onMoveEnd,this.options.updateInterval,this)),t.move=this._onMove),this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},createTile:function(){return e.createElement(\"div\")},getTileSize:function(){var t=this.options.tileSize;return t instanceof o.Point?t:new o.Point(t,t)},_updateZIndex:function(){this._container&&this.options.zIndex!==i&&null!==this.options.zIndex&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t){for(var e,i=this.getPane().children,n=-t(-(1/0),1/0),o=0,s=i.length;o<s;o++)e=i[o].style.zIndex,i[o]!==this._container&&e&&(n=t(n,+e));isFinite(n)&&(this.options.zIndex=n+t(-1,1),this._updateZIndex())},_updateOpacity:function(){if(this._map&&!o.Browser.ielt9){o.DomUtil.setOpacity(this._container,this.options.opacity);var t=+new Date,e=!1,i=!1;for(var n in this._tiles){var s=this._tiles[n];if(s.current&&s.loaded){var r=Math.min(1,(t-s.loaded)/200);o.DomUtil.setOpacity(s.el,r),r<1?e=!0:(s.active&&(i=!0),s.active=!0)}}i&&!this._noPrune&&this._pruneTiles(),e&&(o.Util.cancelAnimFrame(this._fadeFrame),this._fadeFrame=o.Util.requestAnimFrame(this._updateOpacity,this))}},_initContainer:function(){this._container||(this._container=o.DomUtil.create(\"div\",\"leaflet-layer \"+(this.options.className||\"\")),this._updateZIndex(),this.options.opacity<1&&this._updateOpacity(),this.getPane().appendChild(this._container))},_updateLevels:function(){var t=this._tileZoom,e=this.options.maxZoom;if(t===i)return i;for(var n in this._levels)this._levels[n].el.children.length||n===t?this._levels[n].el.style.zIndex=e-Math.abs(t-n):(o.DomUtil.remove(this._levels[n].el),this._removeTilesAtZoom(n),delete this._levels[n]);var s=this._levels[t],r=this._map;return s||(s=this._levels[t]={},s.el=o.DomUtil.create(\"div\",\"leaflet-tile-container leaflet-zoom-animated\",this._container),s.el.style.zIndex=e,s.origin=r.project(r.unproject(r.getPixelOrigin()),t).round(),s.zoom=t,this._setZoomTransform(s,r.getCenter(),r.getZoom()),o.Util.falseFn(s.el.offsetWidth)),this._level=s,s},_pruneTiles:function(){if(this._map){var t,e,i=this._map.getZoom();if(i>this.options.maxZoom||i<this.options.minZoom)return void this._removeAllTiles();for(t in this._tiles)e=this._tiles[t],e.retain=e.current;for(t in this._tiles)if(e=this._tiles[t],e.current&&!e.active){var n=e.coords;this._retainParent(n.x,n.y,n.z,n.z-5)||this._retainChildren(n.x,n.y,n.z,n.z+2)}for(t in this._tiles)this._tiles[t].retain||this._removeTile(t)}},_removeTilesAtZoom:function(t){for(var e in this._tiles)this._tiles[e].coords.z===t&&this._removeTile(e)},_removeAllTiles:function(){for(var t in this._tiles)this._removeTile(t)},_invalidateAll:function(){for(var t in this._levels)o.DomUtil.remove(this._levels[t].el),delete this._levels[t];this._removeAllTiles(),this._tileZoom=null},_retainParent:function(t,e,i,n){var s=Math.floor(t/2),r=Math.floor(e/2),a=i-1,h=new o.Point(+s,+r);h.z=+a;var l=this._tileCoordsToKey(h),u=this._tiles[l];return u&&u.active?(u.retain=!0,!0):(u&&u.loaded&&(u.retain=!0),a>n&&this._retainParent(s,r,a,n))},_retainChildren:function(t,e,i,n){for(var s=2*t;s<2*t+2;s++)for(var r=2*e;r<2*e+2;r++){var a=new o.Point(s,r);a.z=i+1;var h=this._tileCoordsToKey(a),l=this._tiles[h];l&&l.active?l.retain=!0:(l&&l.loaded&&(l.retain=!0),i+1<n&&this._retainChildren(s,r,i+1,n))}},_resetView:function(t){var e=t&&(t.pinch||t.flyTo);this._setView(this._map.getCenter(),this._map.getZoom(),e,e)},_animateZoom:function(t){this._setView(t.center,t.zoom,!0,t.noUpdate)},_setView:function(t,e,n,o){var s=Math.round(e);(this.options.maxZoom!==i&&s>this.options.maxZoom||this.options.minZoom!==i&&s<this.options.minZoom)&&(s=i);var r=this.options.updateWhenZooming&&s!==this._tileZoom;o&&!r||(this._tileZoom=s,this._abortLoading&&this._abortLoading(),this._updateLevels(),this._resetGrid(),s!==i&&this._update(t),n||this._pruneTiles(),this._noPrune=!!n),this._setZoomTransforms(t,e)},_setZoomTransforms:function(t,e){for(var i in this._levels)this._setZoomTransform(this._levels[i],t,e)},_setZoomTransform:function(t,e,i){var n=this._map.getZoomScale(i,t.zoom),s=t.origin.multiplyBy(n).subtract(this._map._getNewPixelOrigin(e,i)).round();o.Browser.any3d?o.DomUtil.setTransform(t.el,s,n):o.DomUtil.setPosition(t.el,s)},_resetGrid:function(){var t=this._map,e=t.options.crs,i=this._tileSize=this.getTileSize(),n=this._tileZoom,o=this._map.getPixelWorldBounds(this._tileZoom);o&&(this._globalTileRange=this._pxBoundsToTileRange(o)),this._wrapX=e.wrapLng&&!this.options.noWrap&&[Math.floor(t.project([0,e.wrapLng[0]],n).x/i.x),Math.ceil(t.project([0,e.wrapLng[1]],n).x/i.y)],this._wrapY=e.wrapLat&&!this.options.noWrap&&[Math.floor(t.project([e.wrapLat[0],0],n).y/i.x),Math.ceil(t.project([e.wrapLat[1],0],n).y/i.y)]},_onMoveEnd:function(){this._map&&!this._map._animatingZoom&&this._update()},_getTiledPixelBounds:function(t){var e=this._map,i=e._animatingZoom?Math.max(e._animateToZoom,e.getZoom()):e.getZoom(),n=e.getZoomScale(i,this._tileZoom),s=e.project(t,this._tileZoom).floor(),r=e.getSize().divideBy(2*n);return new o.Bounds(s.subtract(r),s.add(r))},_update:function(t){var n=this._map;if(n){var s=n.getZoom();if(t===i&&(t=n.getCenter()),this._tileZoom!==i){var r=this._getTiledPixelBounds(t),a=this._pxBoundsToTileRange(r),h=a.getCenter(),l=[],u=this.options.keepBuffer,c=new o.Bounds(a.getBottomLeft().subtract([u,-u]),a.getTopRight().add([u,-u]));for(var d in this._tiles){var _=this._tiles[d].coords;_.z===this._tileZoom&&c.contains(o.point(_.x,_.y))||(this._tiles[d].current=!1)}if(Math.abs(s-this._tileZoom)>1)return void this._setView(t,s);for(var m=a.min.y;m<=a.max.y;m++)for(var p=a.min.x;p<=a.max.x;p++){var f=new o.Point(p,m);if(f.z=this._tileZoom,this._isValidTile(f)){var g=this._tiles[this._tileCoordsToKey(f)];g?g.current=!0:l.push(f)}}if(l.sort(function(t,e){return t.distanceTo(h)-e.distanceTo(h)}),0!==l.length){this._loading||(this._loading=!0,this.fire(\"loading\"));var v=e.createDocumentFragment();for(p=0;p<l.length;p++)this._addTile(l[p],v);this._level.el.appendChild(v)}}}},_isValidTile:function(t){var e=this._map.options.crs;if(!e.infinite){var i=this._globalTileRange;if(!e.wrapLng&&(t.x<i.min.x||t.x>i.max.x)||!e.wrapLat&&(t.y<i.min.y||t.y>i.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return o.latLngBounds(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToBounds:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),s=n.add(i),r=e.unproject(n,t.z),a=e.unproject(s,t.z);return this.options.noWrap||(r=e.wrapLatLng(r),a=e.wrapLatLng(a)),new o.LatLngBounds(r,a)},_tileCoordsToKey:function(t){return t.x+\":\"+t.y+\":\"+t.z},_keyToTileCoords:function(t){var e=t.split(\":\"),i=new o.Point(+e[0],+e[1]);return i.z=+e[2],i},_removeTile:function(t){var e=this._tiles[t];e&&(o.DomUtil.remove(e.el),delete this._tiles[t],this.fire(\"tileunload\",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){o.DomUtil.addClass(t,\"leaflet-tile\");var e=this.getTileSize();t.style.width=e.x+\"px\",t.style.height=e.y+\"px\",t.onselectstart=o.Util.falseFn,t.onmousemove=o.Util.falseFn,o.Browser.ielt9&&this.options.opacity<1&&o.DomUtil.setOpacity(t,this.options.opacity),o.Browser.android&&!o.Browser.android23&&(t.style.WebkitBackfaceVisibility=\"hidden\")},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),s=this.createTile(this._wrapCoords(t),o.bind(this._tileReady,this,t));this._initTile(s),this.createTile.length<2&&o.Util.requestAnimFrame(o.bind(this._tileReady,this,t,null,s)),o.DomUtil.setPosition(s,i),this._tiles[n]={el:s,coords:t,current:!0},e.appendChild(s),this.fire(\"tileloadstart\",{tile:s,coords:t})},_tileReady:function(t,e,i){if(this._map){e&&this.fire(\"tileerror\",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);i=this._tiles[n],i&&(i.loaded=+new Date,this._map._fadeAnimated?(o.DomUtil.setOpacity(i.el,0),o.Util.cancelAnimFrame(this._fadeFrame),this._fadeFrame=o.Util.requestAnimFrame(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),e||(o.DomUtil.addClass(i.el,\"leaflet-tile-loaded\"),this.fire(\"tileload\",{tile:i.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire(\"load\"),o.Browser.ielt9||!this._map._fadeAnimated?o.Util.requestAnimFrame(this._pruneTiles,this):setTimeout(o.bind(this._pruneTiles,this),250)))}},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new o.Point(this._wrapX?o.Util.wrapNum(t.x,this._wrapX):t.x,this._wrapY?o.Util.wrapNum(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new o.Bounds(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}}),o.gridLayer=function(t){return new o.GridLayer(t)},o.TileLayer=o.GridLayer.extend({options:{minZoom:0,maxZoom:18,maxNativeZoom:null,subdomains:\"abc\",errorTileUrl:\"\",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1},initialize:function(t,e){this._url=t,e=o.setOptions(this,e),e.detectRetina&&o.Browser.retina&&e.maxZoom>0&&(e.tileSize=Math.floor(e.tileSize/2),e.zoomReverse?(e.zoomOffset--,e.minZoom++):(e.zoomOffset++,e.maxZoom--),e.minZoom=Math.max(0,e.minZoom)),\"string\"==typeof e.subdomains&&(e.subdomains=e.subdomains.split(\"\")),o.Browser.android||this.on(\"tileunload\",this._onTileRemove)},setUrl:function(t,e){return this._url=t,e||this.redraw(),this},createTile:function(t,i){var n=e.createElement(\"img\");return o.DomEvent.on(n,\"load\",o.bind(this._tileOnLoad,this,i,n)),o.DomEvent.on(n,\"error\",o.bind(this._tileOnError,this,i,n)),this.options.crossOrigin&&(n.crossOrigin=\"\"),n.alt=\"\",n.src=this.getTileUrl(t),n},getTileUrl:function(t){var e={r:o.Browser.retina?\"@2x\":\"\",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var i=this._globalTileRange.max.y-t.y;this.options.tms&&(e.y=i),e[\"-y\"]=i}return o.Util.template(this._url,o.extend(e,this.options))},_tileOnLoad:function(t,e){o.Browser.ielt9?setTimeout(o.bind(t,this,null,e),0):t(null,e)},_tileOnError:function(t,e,i){var n=this.options.errorTileUrl;n&&(e.src=n),t(i,e)},getTileSize:function(){var t=this._map,e=o.GridLayer.prototype.getTileSize.call(this),i=this._tileZoom+this.options.zoomOffset,n=this.options.maxNativeZoom;return null!==n&&i>n?e.divideBy(t.getZoomScale(n,i)).round():e},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this.options,e=this._tileZoom;return t.zoomReverse&&(e=t.maxZoom-e),e+=t.zoomOffset,null!==t.maxNativeZoom?Math.min(e,t.maxNativeZoom):e},_getSubdomain:function(t){var e=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[e]},_abortLoading:function(){var t,e;for(t in this._tiles)this._tiles[t].coords.z!==this._tileZoom&&(e=this._tiles[t].el,e.onload=o.Util.falseFn,e.onerror=o.Util.falseFn,e.complete||(e.src=o.Util.emptyImageUrl,o.DomUtil.remove(e)))}}),o.tileLayer=function(t,e){return new o.TileLayer(t,e)},o.TileLayer.WMS=o.TileLayer.extend({defaultWmsParams:{service:\"WMS\",request:\"GetMap\",layers:\"\",styles:\"\",format:\"image/jpeg\",transparent:!1,version:\"1.1.1\"},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var i=o.extend({},this.defaultWmsParams);for(var n in e)n in this.options||(i[n]=e[n]);e=o.setOptions(this,e),i.width=i.height=e.tileSize*(e.detectRetina&&o.Browser.retina?2:1),this.wmsParams=i},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=this._wmsVersion>=1.3?\"crs\":\"srs\";this.wmsParams[e]=this._crs.code,o.TileLayer.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._tileCoordsToBounds(t),i=this._crs.project(e.getNorthWest()),n=this._crs.project(e.getSouthEast()),s=(this._wmsVersion>=1.3&&this._crs===o.CRS.EPSG4326?[n.y,i.x,i.y,n.x]:[i.x,n.y,n.x,i.y]).join(\",\"),r=o.TileLayer.prototype.getTileUrl.call(this,t);return r+o.Util.getParamString(this.wmsParams,r,this.options.uppercase)+(this.options.uppercase?\"&BBOX=\":\"&bbox=\")+s},setParams:function(t,e){return o.extend(this.wmsParams,t),e||this.redraw(),this}}),o.tileLayer.wms=function(t,e){return new o.TileLayer.WMS(t,e)},o.ImageOverlay=o.Layer.extend({options:{opacity:1,alt:\"\",interactive:!1,attribution:null,crossOrigin:!1},initialize:function(t,e,i){this._url=t,this._bounds=o.latLngBounds(e),o.setOptions(this,i)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(o.DomUtil.addClass(this._image,\"leaflet-interactive\"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){o.DomUtil.remove(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&o.DomUtil.toFront(this._image),this},bringToBack:function(){return this._map&&o.DomUtil.toBack(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=t,this._map&&this._reset(),this},getAttribution:function(){return this.options.attribution},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t=this._image=o.DomUtil.create(\"img\",\"leaflet-image-layer \"+(this._zoomAnimated?\"leaflet-zoom-animated\":\"\"));t.onselectstart=o.Util.falseFn,t.onmousemove=o.Util.falseFn,t.onload=o.bind(this.fire,this,\"load\"),this.options.crossOrigin&&(t.crossOrigin=\"\"),t.src=this._url,t.alt=this.options.alt},_animateZoom:function(t){var e=this._map.getZoomScale(t.zoom),i=this._map._latLngToNewLayerPoint(this._bounds.getNorthWest(),t.zoom,t.center);o.DomUtil.setTransform(this._image,i,e)},_reset:function(){var t=this._image,e=new o.Bounds(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),i=e.getSize();o.DomUtil.setPosition(t,e.min),t.style.width=i.x+\"px\",t.style.height=i.y+\"px\"},_updateOpacity:function(){o.DomUtil.setOpacity(this._image,this.options.opacity)}}),o.imageOverlay=function(t,e,i){return new o.ImageOverlay(t,e,i)},o.Icon=o.Class.extend({initialize:function(t){o.setOptions(this,t)},createIcon:function(t){return this._createIcon(\"icon\",t)},createShadow:function(t){return this._createIcon(\"shadow\",t)},_createIcon:function(t,e){var i=this._getIconUrl(t);if(!i){if(\"icon\"===t)throw new Error(\"iconUrl not set in Icon options (see the docs).\");return null}var n=this._createImg(i,e&&\"IMG\"===e.tagName?e:null);return this._setIconStyles(n,t),n},_setIconStyles:function(t,e){var i=this.options,n=i[e+\"Size\"];\"number\"==typeof n&&(n=[n,n]);var s=o.point(n),r=o.point(\"shadow\"===e&&i.shadowAnchor||i.iconAnchor||s&&s.divideBy(2,!0));t.className=\"leaflet-marker-\"+e+\" \"+(i.className||\"\"),r&&(t.style.marginLeft=-r.x+\"px\",t.style.marginTop=-r.y+\"px\"),s&&(t.style.width=s.x+\"px\",t.style.height=s.y+\"px\")},_createImg:function(t,i){return i=i||e.createElement(\"img\"),i.src=t,i},_getIconUrl:function(t){return o.Browser.retina&&this.options[t+\"RetinaUrl\"]||this.options[t+\"Url\"]}}),o.icon=function(t){return new o.Icon(t)},o.Icon.Default=o.Icon.extend({options:{iconUrl:\"marker-icon.png\",iconRetinaUrl:\"marker-icon-2x.png\",shadowUrl:\"marker-shadow.png\",iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],tooltipAnchor:[16,-28],shadowSize:[41,41]},_getIconUrl:function(t){return o.Icon.Default.imagePath||(o.Icon.Default.imagePath=this._detectIconPath()),(this.options.imagePath||o.Icon.Default.imagePath)+o.Icon.prototype._getIconUrl.call(this,t)},_detectIconPath:function(){var t=o.DomUtil.create(\"div\",\"leaflet-default-icon-path\",e.body),i=o.DomUtil.getStyle(t,\"background-image\")||o.DomUtil.getStyle(t,\"backgroundImage\");return e.body.removeChild(t),0===i.indexOf(\"url\")?i.replace(/^url\\([\\\"\\']?/,\"\").replace(/marker-icon\\.png[\\\"\\']?\\)$/,\"\"):\"\"}}),o.Marker=o.Layer.extend({options:{icon:new o.Icon.Default,interactive:!0,draggable:!1,keyboard:!0,title:\"\",alt:\"\",zIndexOffset:0,opacity:1,riseOnHover:!1,riseOffset:250,pane:\"markerPane\",nonBubblingEvents:[\"click\",\"dblclick\",\"mouseover\",\"mouseout\",\"contextmenu\"]},initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t)},onAdd:function(t){this._zoomAnimated=this._zoomAnimated&&t.options.markerZoomAnimation,this._zoomAnimated&&t.on(\"zoomanim\",this._animateZoom,this),this._initIcon(),this.update()},onRemove:function(t){this.dragging&&this.dragging.enabled()&&(this.options.draggable=!0,this.dragging.removeHooks()),this._zoomAnimated&&t.off(\"zoomanim\",this._animateZoom,this),this._removeIcon(),this._removeShadow()},getEvents:function(){return{zoom:this.update,viewreset:this.update}},getLatLng:function(){return this._latlng},setLatLng:function(t){var e=this._latlng;return this._latlng=o.latLng(t),this.update(),this.fire(\"move\",{oldLatLng:e,latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update()},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup,this._popup.options),this},getElement:function(){return this._icon},update:function(){if(this._icon){var t=this._map.latLngToLayerPoint(this._latlng).round();this._setPos(t)}return this},_initIcon:function(){var t=this.options,e=\"leaflet-zoom-\"+(this._zoomAnimated?\"animated\":\"hide\"),i=t.icon.createIcon(this._icon),n=!1;i!==this._icon&&(this._icon&&this._removeIcon(),n=!0,t.title&&(i.title=t.title),t.alt&&(i.alt=t.alt)),o.DomUtil.addClass(i,e),t.keyboard&&(i.tabIndex=\"0\"),this._icon=i,t.riseOnHover&&this.on({mouseover:this._bringToFront,mouseout:this._resetZIndex});var s=t.icon.createShadow(this._shadow),r=!1;s!==this._shadow&&(this._removeShadow(),r=!0),s&&o.DomUtil.addClass(s,e),this._shadow=s,t.opacity<1&&this._updateOpacity(),n&&this.getPane().appendChild(this._icon),this._initInteraction(),s&&r&&this.getPane(\"shadowPane\").appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&this.off({mouseover:this._bringToFront,mouseout:this._resetZIndex}),o.DomUtil.remove(this._icon),this.removeInteractiveTarget(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&o.DomUtil.remove(this._shadow),this._shadow=null},_setPos:function(t){o.DomUtil.setPosition(this._icon,t),this._shadow&&o.DomUtil.setPosition(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon.style.zIndex=this._zIndex+t},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(e)},_initInteraction:function(){if(this.options.interactive&&(o.DomUtil.addClass(this._icon,\"leaflet-interactive\"),this.addInteractiveTarget(this._icon),o.Handler.MarkerDrag)){var t=this.options.draggable;this.dragging&&(t=this.dragging.enabled(),this.dragging.disable()),this.dragging=new o.Handler.MarkerDrag(this),t&&this.dragging.enable()}},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},_updateOpacity:function(){var t=this.options.opacity;o.DomUtil.setOpacity(this._icon,t),this._shadow&&o.DomUtil.setOpacity(this._shadow,t)},_bringToFront:function(){this._updateZIndex(this.options.riseOffset)},_resetZIndex:function(){this._updateZIndex(0)}}),o.marker=function(t,e){return new o.Marker(t,e)},o.DivIcon=o.Icon.extend({options:{iconSize:[12,12],html:!1,bgPos:null,className:\"leaflet-div-icon\"},createIcon:function(t){var i=t&&\"DIV\"===t.tagName?t:e.createElement(\"div\"),n=this.options;if(i.innerHTML=n.html!==!1?n.html:\"\",n.bgPos){var s=o.point(n.bgPos);i.style.backgroundPosition=-s.x+\"px \"+-s.y+\"px\"}return this._setIconStyles(i,\"icon\"),i},createShadow:function(){return null}}),o.divIcon=function(t){return new o.DivIcon(t)},o.DivOverlay=o.Layer.extend({options:{offset:[0,7],className:\"\",pane:\"popupPane\"},initialize:function(t,e){o.setOptions(this,t),this._source=e},onAdd:function(t){this._zoomAnimated=t._zoomAnimated,this._container||this._initLayout(),t._fadeAnimated&&o.DomUtil.setOpacity(this._container,0),clearTimeout(this._removeTimeout),this.getPane().appendChild(this._container),this.update(),t._fadeAnimated&&o.DomUtil.setOpacity(this._container,1),this.bringToFront()},onRemove:function(t){t._fadeAnimated?(o.DomUtil.setOpacity(this._container,0),this._removeTimeout=setTimeout(o.bind(o.DomUtil.remove,o.DomUtil,this._container),200)):o.DomUtil.remove(this._container)},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=o.latLng(t),this._map&&(this._updatePosition(),this._adjustPan()),this},getContent:function(){return this._content},setContent:function(t){return this._content=t,this.update(),this},getElement:function(){return this._container},update:function(){this._map&&(this._container.style.visibility=\"hidden\",this._updateContent(),this._updateLayout(),this._updatePosition(),this._container.style.visibility=\"\",this._adjustPan())},getEvents:function(){var t={zoom:this._updatePosition,viewreset:this._updatePosition};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},isOpen:function(){return!!this._map&&this._map.hasLayer(this)},bringToFront:function(){return this._map&&o.DomUtil.toFront(this._container),this},bringToBack:function(){return this._map&&o.DomUtil.toBack(this._container),this},_updateContent:function(){if(this._content){var t=this._contentNode,e=\"function\"==typeof this._content?this._content(this._source||this):this._content;if(\"string\"==typeof e)t.innerHTML=e;else{for(;t.hasChildNodes();)t.removeChild(t.firstChild);t.appendChild(e)}this.fire(\"contentupdate\")}},_updatePosition:function(){if(this._map){var t=this._map.latLngToLayerPoint(this._latlng),e=o.point(this.options.offset),i=this._getAnchor();this._zoomAnimated?o.DomUtil.setPosition(this._container,t.add(i)):e=e.add(t).add(i);var n=this._containerBottom=-e.y,s=this._containerLeft=-Math.round(this._containerWidth/2)+e.x;this._container.style.bottom=n+\"px\",this._container.style.left=s+\"px\"}},_getAnchor:function(){return[0,0]}}),o.Popup=o.DivOverlay.extend({options:{maxWidth:300,minWidth:50,maxHeight:null,autoPan:!0,autoPanPaddingTopLeft:null,autoPanPaddingBottomRight:null,autoPanPadding:[5,5],keepInView:!1,closeButton:!0,autoClose:!0,className:\"\"},openOn:function(t){return t.openPopup(this),this},onAdd:function(t){o.DivOverlay.prototype.onAdd.call(this,t),t.fire(\"popupopen\",{popup:this}),this._source&&(this._source.fire(\"popupopen\",{popup:this},!0),this._source instanceof o.Path||this._source.on(\"preclick\",o.DomEvent.stopPropagation))},onRemove:function(t){o.DivOverlay.prototype.onRemove.call(this,t),t.fire(\"popupclose\",{popup:this}),this._source&&(this._source.fire(\"popupclose\",{popup:this},!0),this._source instanceof o.Path||this._source.off(\"preclick\",o.DomEvent.stopPropagation))},getEvents:function(){var t=o.DivOverlay.prototype.getEvents.call(this);return(\"closeOnClick\"in this.options?this.options.closeOnClick:this._map.options.closePopupOnClick)&&(t.preclick=this._close),this.options.keepInView&&(t.moveend=this._adjustPan),t},_close:function(){this._map&&this._map.closePopup(this)},_initLayout:function(){var t=\"leaflet-popup\",e=this._container=o.DomUtil.create(\"div\",t+\" \"+(this.options.className||\"\")+\" leaflet-zoom-animated\");if(this.options.closeButton){var i=this._closeButton=o.DomUtil.create(\"a\",t+\"-close-button\",e);i.href=\"#close\",i.innerHTML=\"×\",o.DomEvent.on(i,\"click\",this._onCloseButtonClick,this)}var n=this._wrapper=o.DomUtil.create(\"div\",t+\"-content-wrapper\",e);this._contentNode=o.DomUtil.create(\"div\",t+\"-content\",n),o.DomEvent.disableClickPropagation(n).disableScrollPropagation(this._contentNode).on(n,\"contextmenu\",o.DomEvent.stopPropagation),this._tipContainer=o.DomUtil.create(\"div\",t+\"-tip-container\",e),this._tip=o.DomUtil.create(\"div\",t+\"-tip\",this._tipContainer)},_updateLayout:function(){var t=this._contentNode,e=t.style;e.width=\"\",e.whiteSpace=\"nowrap\";var i=t.offsetWidth;i=Math.min(i,this.options.maxWidth),i=Math.max(i,this.options.minWidth),e.width=i+1+\"px\",e.whiteSpace=\"\",e.height=\"\";var n=t.offsetHeight,s=this.options.maxHeight,r=\"leaflet-popup-scrolled\";s&&n>s?(e.height=s+\"px\",o.DomUtil.addClass(t,r)):o.DomUtil.removeClass(t,r),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),i=this._getAnchor();o.DomUtil.setPosition(this._container,e.add(i))},_adjustPan:function(){if(!(!this.options.autoPan||this._map._panAnim&&this._map._panAnim._inProgress)){var t=this._map,e=parseInt(o.DomUtil.getStyle(this._container,\"marginBottom\"),10)||0,i=this._container.offsetHeight+e,n=this._containerWidth,s=new o.Point(this._containerLeft,-i-this._containerBottom);s._add(o.DomUtil.getPosition(this._container));var r=t.layerPointToContainerPoint(s),a=o.point(this.options.autoPanPadding),h=o.point(this.options.autoPanPaddingTopLeft||a),l=o.point(this.options.autoPanPaddingBottomRight||a),u=t.getSize(),c=0,d=0;\r\nr.x+n+l.x>u.x&&(c=r.x+n-u.x+l.x),r.x-c-h.x<0&&(c=r.x-h.x),r.y+i+l.y>u.y&&(d=r.y+i-u.y+l.y),r.y-d-h.y<0&&(d=r.y-h.y),(c||d)&&t.fire(\"autopanstart\").panBy([c,d])}},_onCloseButtonClick:function(t){this._close(),o.DomEvent.stop(t)},_getAnchor:function(){return o.point(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),o.popup=function(t,e){return new o.Popup(t,e)},o.Map.mergeOptions({closePopupOnClick:!0}),o.Map.include({openPopup:function(t,e,i){return t instanceof o.Popup||(t=new o.Popup(i).setContent(t)),e&&t.setLatLng(e),this.hasLayer(t)?this:(this._popup&&this._popup.options.autoClose&&this.closePopup(),this._popup=t,this.addLayer(t))},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&this.removeLayer(t),this}}),o.Layer.include({bindPopup:function(t,e){return t instanceof o.Popup?(o.setOptions(t,e),this._popup=t,t._source=this):(this._popup&&!e||(this._popup=new o.Popup(e,this)),this._popup.setContent(t)),this._popupHandlersAdded||(this.on({click:this._openPopup,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t,e){if(t instanceof o.Layer||(e=t,t=this),t instanceof o.FeatureGroup)for(var i in this._layers){t=this._layers[i];break}return e||(e=t.getCenter?t.getCenter():t.getLatLng()),this._popup&&this._map&&(this._popup._source=t,this._popup.update(),this._map.openPopup(this._popup,e)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(t){return this._popup&&(this._popup._map?this.closePopup():this.openPopup(t)),this},isPopupOpen:function(){return this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var e=t.layer||t.target;if(this._popup&&this._map)return o.DomEvent.stop(t),e instanceof o.Path?void this.openPopup(t.layer||t.target,t.latlng):void(this._map.hasLayer(this._popup)&&this._popup._source===e?this.closePopup():this.openPopup(e,t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)}}),o.Marker.include({_getPopupAnchor:function(){return this.options.icon.options.popupAnchor||[0,0]}}),o.Tooltip=o.DivOverlay.extend({options:{pane:\"tooltipPane\",offset:[0,0],direction:\"auto\",permanent:!1,sticky:!1,interactive:!1,opacity:.9},onAdd:function(t){o.DivOverlay.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire(\"tooltipopen\",{tooltip:this}),this._source&&this._source.fire(\"tooltipopen\",{tooltip:this},!0)},onRemove:function(t){o.DivOverlay.prototype.onRemove.call(this,t),t.fire(\"tooltipclose\",{tooltip:this}),this._source&&this._source.fire(\"tooltipclose\",{tooltip:this},!0)},getEvents:function(){var t=o.DivOverlay.prototype.getEvents.call(this);return o.Browser.touch&&!this.options.permanent&&(t.preclick=this._close),t},_close:function(){this._map&&this._map.closeTooltip(this)},_initLayout:function(){var t=\"leaflet-tooltip\",e=t+\" \"+(this.options.className||\"\")+\" leaflet-zoom-\"+(this._zoomAnimated?\"animated\":\"hide\");this._contentNode=this._container=o.DomUtil.create(\"div\",e)},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e=this._map,i=this._container,n=e.latLngToContainerPoint(e.getCenter()),s=e.layerPointToContainerPoint(t),r=this.options.direction,a=i.offsetWidth,h=i.offsetHeight,l=o.point(this.options.offset),u=this._getAnchor();\"top\"===r?t=t.add(o.point(-a/2+l.x,-h+l.y+u.y)):\"bottom\"===r?t=t.subtract(o.point(a/2-l.x,-l.y)):\"center\"===r?t=t.subtract(o.point(a/2+l.x,h/2-u.y+l.y)):\"right\"===r||\"auto\"===r&&s.x<n.x?(r=\"right\",t=t.add([l.x+u.x,u.y-h/2+l.y])):(r=\"left\",t=t.subtract(o.point(a+u.x-l.x,h/2-u.y-l.y))),o.DomUtil.removeClass(i,\"leaflet-tooltip-right\"),o.DomUtil.removeClass(i,\"leaflet-tooltip-left\"),o.DomUtil.removeClass(i,\"leaflet-tooltip-top\"),o.DomUtil.removeClass(i,\"leaflet-tooltip-bottom\"),o.DomUtil.addClass(i,\"leaflet-tooltip-\"+r),o.DomUtil.setPosition(i,t)},_updatePosition:function(){var t=this._map.latLngToLayerPoint(this._latlng);this._setPosition(t)},setOpacity:function(t){this.options.opacity=t,this._container&&o.DomUtil.setOpacity(this._container,t)},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);this._setPosition(e)},_getAnchor:function(){return o.point(this._source&&this._source._getTooltipAnchor&&!this.options.sticky?this._source._getTooltipAnchor():[0,0])}}),o.tooltip=function(t,e){return new o.Tooltip(t,e)},o.Map.include({openTooltip:function(t,e,i){return t instanceof o.Tooltip||(t=new o.Tooltip(i).setContent(t)),e&&t.setLatLng(e),this.hasLayer(t)?this:this.addLayer(t)},closeTooltip:function(t){return t&&this.removeLayer(t),this}}),o.Layer.include({bindTooltip:function(t,e){return t instanceof o.Tooltip?(o.setOptions(t,e),this._tooltip=t,t._source=this):(this._tooltip&&!e||(this._tooltip=o.tooltip(e,this)),this._tooltip.setContent(t)),this._initTooltipInteractions(),this._tooltip.options.permanent&&this._map&&this._map.hasLayer(this)&&this.openTooltip(),this},unbindTooltip:function(){return this._tooltip&&(this._initTooltipInteractions(!0),this.closeTooltip(),this._tooltip=null),this},_initTooltipInteractions:function(t){if(t||!this._tooltipHandlersAdded){var e=t?\"off\":\"on\",i={remove:this.closeTooltip,move:this._moveTooltip};this._tooltip.options.permanent?i.add=this._openTooltip:(i.mouseover=this._openTooltip,i.mouseout=this.closeTooltip,this._tooltip.options.sticky&&(i.mousemove=this._moveTooltip),o.Browser.touch&&(i.click=this._openTooltip)),this[e](i),this._tooltipHandlersAdded=!t}},openTooltip:function(t,e){if(t instanceof o.Layer||(e=t,t=this),t instanceof o.FeatureGroup)for(var i in this._layers){t=this._layers[i];break}return e||(e=t.getCenter?t.getCenter():t.getLatLng()),this._tooltip&&this._map&&(this._tooltip._source=t,this._tooltip.update(),this._map.openTooltip(this._tooltip,e),this._tooltip.options.interactive&&this._tooltip._container&&(o.DomUtil.addClass(this._tooltip._container,\"leaflet-clickable\"),this.addInteractiveTarget(this._tooltip._container))),this},closeTooltip:function(){return this._tooltip&&(this._tooltip._close(),this._tooltip.options.interactive&&this._tooltip._container&&(o.DomUtil.removeClass(this._tooltip._container,\"leaflet-clickable\"),this.removeInteractiveTarget(this._tooltip._container))),this},toggleTooltip:function(t){return this._tooltip&&(this._tooltip._map?this.closeTooltip():this.openTooltip(t)),this},isTooltipOpen:function(){return this._tooltip.isOpen()},setTooltipContent:function(t){return this._tooltip&&this._tooltip.setContent(t),this},getTooltip:function(){return this._tooltip},_openTooltip:function(t){var e=t.layer||t.target;this._tooltip&&this._map&&this.openTooltip(e,this._tooltip.options.sticky?t.latlng:i)},_moveTooltip:function(t){var e,i,n=t.latlng;this._tooltip.options.sticky&&t.originalEvent&&(e=this._map.mouseEventToContainerPoint(t.originalEvent),i=this._map.containerPointToLayerPoint(e),n=this._map.layerPointToLatLng(i)),this._tooltip.setLatLng(n)}}),o.Marker.include({_getTooltipAnchor:function(){return this.options.icon.options.tooltipAnchor||[0,0]}}),o.LayerGroup=o.Layer.extend({initialize:function(t){this._layers={};var e,i;if(t)for(e=0,i=t.length;e<i;e++)this.addLayer(t[e])},addLayer:function(t){var e=this.getLayerId(t);return this._layers[e]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){var e=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[e]&&this._map.removeLayer(this._layers[e]),delete this._layers[e],this},hasLayer:function(t){return!!t&&(t in this._layers||this.getLayerId(t)in this._layers)},clearLayers:function(){for(var t in this._layers)this.removeLayer(this._layers[t]);return this},invoke:function(t){var e,i,n=Array.prototype.slice.call(arguments,1);for(e in this._layers)i=this._layers[e],i[t]&&i[t].apply(i,n);return this},onAdd:function(t){for(var e in this._layers)t.addLayer(this._layers[e])},onRemove:function(t){for(var e in this._layers)t.removeLayer(this._layers[e])},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];for(var e in this._layers)t.push(this._layers[e]);return t},setZIndex:function(t){return this.invoke(\"setZIndex\",t)},getLayerId:function(t){return o.stamp(t)}}),o.layerGroup=function(t){return new o.LayerGroup(t)},o.FeatureGroup=o.LayerGroup.extend({addLayer:function(t){return this.hasLayer(t)?this:(t.addEventParent(this),o.LayerGroup.prototype.addLayer.call(this,t),this.fire(\"layeradd\",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?(t in this._layers&&(t=this._layers[t]),t.removeEventParent(this),o.LayerGroup.prototype.removeLayer.call(this,t),this.fire(\"layerremove\",{layer:t})):this},setStyle:function(t){return this.invoke(\"setStyle\",t)},bringToFront:function(){return this.invoke(\"bringToFront\")},bringToBack:function(){return this.invoke(\"bringToBack\")},getBounds:function(){var t=new o.LatLngBounds;for(var e in this._layers){var i=this._layers[e];t.extend(i.getBounds?i.getBounds():i.getLatLng())}return t}}),o.featureGroup=function(t){return new o.FeatureGroup(t)},o.Renderer=o.Layer.extend({options:{padding:.1},initialize:function(t){o.setOptions(this,t),o.stamp(this)},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&o.DomUtil.addClass(this._container,\"leaflet-zoom-animated\")),this.getPane().appendChild(this._container),this._update()},onRemove:function(){o.DomUtil.remove(this._container)},getEvents:function(){var t={viewreset:this._reset,zoom:this._onZoom,moveend:this._update};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(t,e){var i=this._map.getZoomScale(e,this._zoom),n=o.DomUtil.getPosition(this._container),s=this._map.getSize().multiplyBy(.5+this.options.padding),r=this._map.project(this._center,e),a=this._map.project(t,e),h=a.subtract(r),l=s.multiplyBy(-i).add(n).add(s).subtract(h);o.Browser.any3d?o.DomUtil.setTransform(this._container,l,i):o.DomUtil.setPosition(this._container,l)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom)},_update:function(){var t=this.options.padding,e=this._map.getSize(),i=this._map.containerPointToLayerPoint(e.multiplyBy(-t)).round();this._bounds=new o.Bounds(i,i.add(e.multiplyBy(1+2*t)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),o.Map.include({getRenderer:function(t){var e=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return e||(e=this._renderer=this.options.preferCanvas&&o.canvas()||o.svg()),this.hasLayer(e)||this.addLayer(e),e},_getPaneRenderer:function(t){if(\"overlayPane\"===t||t===i)return!1;var e=this._paneRenderers[t];return e===i&&(e=o.SVG&&o.svg({pane:t})||o.Canvas&&o.canvas({pane:t}),this._paneRenderers[t]=e),e}}),o.Path=o.Layer.extend({options:{stroke:!0,color:\"#3388ff\",weight:3,opacity:1,lineCap:\"round\",lineJoin:\"round\",dashArray:null,dashOffset:null,fill:!1,fillColor:null,fillOpacity:.2,fillRule:\"evenodd\",interactive:!0},beforeAdd:function(t){this._renderer=t.getRenderer(this)},onAdd:function(){this._renderer._initPath(this),this._reset(),this._renderer._addPath(this),this._renderer.on(\"update\",this._update,this)},onRemove:function(){this._renderer._removePath(this),this._renderer.off(\"update\",this._update,this)},getEvents:function(){return{zoomend:this._project,viewreset:this._reset}},redraw:function(){return this._map&&this._renderer._updatePath(this),this},setStyle:function(t){return o.setOptions(this,t),this._renderer&&this._renderer._updateStyle(this),this},bringToFront:function(){return this._renderer&&this._renderer._bringToFront(this),this},bringToBack:function(){return this._renderer&&this._renderer._bringToBack(this),this},getElement:function(){return this._path},_reset:function(){this._project(),this._update()},_clickTolerance:function(){return(this.options.stroke?this.options.weight/2:0)+(o.Browser.touch?10:0)}}),o.LineUtil={simplify:function(t,e){if(!e||!t.length)return t.slice();var i=e*e;return t=this._reducePoints(t,i),t=this._simplifyDP(t,i)},pointToSegmentDistance:function(t,e,i){return Math.sqrt(this._sqClosestPointOnSegment(t,e,i,!0))},closestPointOnSegment:function(t,e,i){return this._sqClosestPointOnSegment(t,e,i)},_simplifyDP:function(t,e){var n=t.length,o=typeof Uint8Array!=i+\"\"?Uint8Array:Array,s=new o(n);s[0]=s[n-1]=1,this._simplifyDPStep(t,s,e,0,n-1);var r,a=[];for(r=0;r<n;r++)s[r]&&a.push(t[r]);return a},_simplifyDPStep:function(t,e,i,n,o){var s,r,a,h=0;for(r=n+1;r<=o-1;r++)a=this._sqClosestPointOnSegment(t[r],t[n],t[o],!0),a>h&&(s=r,h=a);h>i&&(e[s]=1,this._simplifyDPStep(t,e,i,n,s),this._simplifyDPStep(t,e,i,s,o))},_reducePoints:function(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;n<s;n++)this._sqDist(t[n],t[o])>e&&(i.push(t[n]),o=n);return o<s-1&&i.push(t[s-1]),i},clipSegment:function(t,e,i,n,o){var s,r,a,h=n?this._lastCode:this._getBitCode(t,i),l=this._getBitCode(e,i);for(this._lastCode=l;;){if(!(h|l))return[t,e];if(h&l)return!1;s=h||l,r=this._getEdgeIntersection(t,e,s,i,o),a=this._getBitCode(r,i),s===h?(t=r,h=a):(e=r,l=a)}},_getEdgeIntersection:function(t,e,i,n,s){var r,a,h=e.x-t.x,l=e.y-t.y,u=n.min,c=n.max;return 8&i?(r=t.x+h*(c.y-t.y)/l,a=c.y):4&i?(r=t.x+h*(u.y-t.y)/l,a=u.y):2&i?(r=c.x,a=t.y+l*(c.x-t.x)/h):1&i&&(r=u.x,a=t.y+l*(u.x-t.x)/h),new o.Point(r,a,s)},_getBitCode:function(t,e){var i=0;return t.x<e.min.x?i|=1:t.x>e.max.x&&(i|=2),t.y<e.min.y?i|=4:t.y>e.max.y&&(i|=8),i},_sqDist:function(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n},_sqClosestPointOnSegment:function(t,e,i,n){var s,r=e.x,a=e.y,h=i.x-r,l=i.y-a,u=h*h+l*l;return u>0&&(s=((t.x-r)*h+(t.y-a)*l)/u,s>1?(r=i.x,a=i.y):s>0&&(r+=h*s,a+=l*s)),h=t.x-r,l=t.y-a,n?h*h+l*l:new o.Point(r,a)}},o.Polyline=o.Path.extend({options:{smoothFactor:1,noClip:!1},initialize:function(t,e){o.setOptions(this,e),this._setLatLngs(t)},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._setLatLngs(t),this.redraw()},isEmpty:function(){return!this._latlngs.length},closestLayerPoint:function(t){for(var e,i,n=1/0,s=null,r=o.LineUtil._sqClosestPointOnSegment,a=0,h=this._parts.length;a<h;a++)for(var l=this._parts[a],u=1,c=l.length;u<c;u++){e=l[u-1],i=l[u];var d=r(t,e,i,!0);d<n&&(n=d,s=r(t,e,i))}return s&&(s.distance=Math.sqrt(n)),s},getCenter:function(){if(!this._map)throw new Error(\"Must add layer to map before using getCenter()\");var t,e,i,n,o,s,r,a=this._rings[0],h=a.length;if(!h)return null;for(t=0,e=0;t<h-1;t++)e+=a[t].distanceTo(a[t+1])/2;if(0===e)return this._map.layerPointToLatLng(a[0]);for(t=0,n=0;t<h-1;t++)if(o=a[t],s=a[t+1],i=o.distanceTo(s),n+=i,n>e)return r=(n-e)/i,this._map.layerPointToLatLng([s.x-r*(s.x-o.x),s.y-r*(s.y-o.y)])},getBounds:function(){return this._bounds},addLatLng:function(t,e){return e=e||this._defaultShape(),t=o.latLng(t),e.push(t),this._bounds.extend(t),this.redraw()},_setLatLngs:function(t){this._bounds=new o.LatLngBounds,this._latlngs=this._convertLatLngs(t)},_defaultShape:function(){return o.Polyline._flat(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(t){for(var e=[],i=o.Polyline._flat(t),n=0,s=t.length;n<s;n++)i?(e[n]=o.latLng(t[n]),this._bounds.extend(e[n])):e[n]=this._convertLatLngs(t[n]);return e},_project:function(){var t=new o.Bounds;this._rings=[],this._projectLatlngs(this._latlngs,this._rings,t);var e=this._clickTolerance(),i=new o.Point(e,e);this._bounds.isValid()&&t.isValid()&&(t.min._subtract(i),t.max._add(i),this._pxBounds=t)},_projectLatlngs:function(t,e,i){var n,s,r=t[0]instanceof o.LatLng,a=t.length;if(r){for(s=[],n=0;n<a;n++)s[n]=this._map.latLngToLayerPoint(t[n]),i.extend(s[n]);e.push(s)}else for(n=0;n<a;n++)this._projectLatlngs(t[n],e,i)},_clipPoints:function(){var t=this._renderer._bounds;if(this._parts=[],this._pxBounds&&this._pxBounds.intersects(t)){if(this.options.noClip)return void(this._parts=this._rings);var e,i,n,s,r,a,h,l=this._parts;for(e=0,n=0,s=this._rings.length;e<s;e++)for(h=this._rings[e],i=0,r=h.length;i<r-1;i++)a=o.LineUtil.clipSegment(h[i],h[i+1],t,i,!0),a&&(l[n]=l[n]||[],l[n].push(a[0]),a[1]===h[i+1]&&i!==r-2||(l[n].push(a[1]),n++))}},_simplifyPoints:function(){for(var t=this._parts,e=this.options.smoothFactor,i=0,n=t.length;i<n;i++)t[i]=o.LineUtil.simplify(t[i],e)},_update:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),this._updatePath())},_updatePath:function(){this._renderer._updatePoly(this)}}),o.polyline=function(t,e){return new o.Polyline(t,e)},o.Polyline._flat=function(t){return!o.Util.isArray(t[0])||\"object\"!=typeof t[0][0]&&\"undefined\"!=typeof t[0][0]},o.PolyUtil={},o.PolyUtil.clipPolygon=function(t,e,i){var n,s,r,a,h,l,u,c,d,_=[1,4,2,8],m=o.LineUtil;for(s=0,u=t.length;s<u;s++)t[s]._code=m._getBitCode(t[s],e);for(a=0;a<4;a++){for(c=_[a],n=[],s=0,u=t.length,r=u-1;s<u;r=s++)h=t[s],l=t[r],h._code&c?l._code&c||(d=m._getEdgeIntersection(l,h,c,e,i),d._code=m._getBitCode(d,e),n.push(d)):(l._code&c&&(d=m._getEdgeIntersection(l,h,c,e,i),d._code=m._getBitCode(d,e),n.push(d)),n.push(h));t=n}return t},o.Polygon=o.Polyline.extend({options:{fill:!0},isEmpty:function(){return!this._latlngs.length||!this._latlngs[0].length},getCenter:function(){if(!this._map)throw new Error(\"Must add layer to map before using getCenter()\");var t,e,i,n,o,s,r,a,h,l=this._rings[0],u=l.length;if(!u)return null;for(s=r=a=0,t=0,e=u-1;t<u;e=t++)i=l[t],n=l[e],o=i.y*n.x-n.y*i.x,r+=(i.x+n.x)*o,a+=(i.y+n.y)*o,s+=3*o;return h=0===s?l[0]:[r/s,a/s],this._map.layerPointToLatLng(h)},_convertLatLngs:function(t){var e=o.Polyline.prototype._convertLatLngs.call(this,t),i=e.length;return i>=2&&e[0]instanceof o.LatLng&&e[0].equals(e[i-1])&&e.pop(),e},_setLatLngs:function(t){o.Polyline.prototype._setLatLngs.call(this,t),o.Polyline._flat(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return o.Polyline._flat(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,e=this.options.weight,i=new o.Point(e,e);if(t=new o.Bounds(t.min.subtract(i),t.max.add(i)),this._parts=[],this._pxBounds&&this._pxBounds.intersects(t)){if(this.options.noClip)return void(this._parts=this._rings);for(var n,s=0,r=this._rings.length;s<r;s++)n=o.PolyUtil.clipPolygon(this._rings[s],t,!0),n.length&&this._parts.push(n)}},_updatePath:function(){this._renderer._updatePoly(this,!0)}}),o.polygon=function(t,e){return new o.Polygon(t,e)},o.Rectangle=o.Polygon.extend({initialize:function(t,e){o.Polygon.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=o.latLngBounds(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}}),o.rectangle=function(t,e){return new o.Rectangle(t,e)},o.CircleMarker=o.Path.extend({options:{fill:!0,radius:10},initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t),this._radius=this.options.radius},setLatLng:function(t){return this._latlng=o.latLng(t),this.redraw(),this.fire(\"move\",{latlng:this._latlng})},getLatLng:function(){return this._latlng},setRadius:function(t){return this.options.radius=this._radius=t,this.redraw()},getRadius:function(){return this._radius},setStyle:function(t){var e=t&&t.radius||this._radius;return o.Path.prototype.setStyle.call(this,t),this.setRadius(e),this},_project:function(){this._point=this._map.latLngToLayerPoint(this._latlng),this._updateBounds()},_updateBounds:function(){var t=this._radius,e=this._radiusY||t,i=this._clickTolerance(),n=[t+i,e+i];this._pxBounds=new o.Bounds(this._point.subtract(n),this._point.add(n))},_update:function(){this._map&&this._updatePath()},_updatePath:function(){this._renderer._updateCircle(this)},_empty:function(){return this._radius&&!this._renderer._bounds.intersects(this._pxBounds)}}),o.circleMarker=function(t,e){return new o.CircleMarker(t,e)},o.Circle=o.CircleMarker.extend({initialize:function(t,e,i){if(\"number\"==typeof e&&(e=o.extend({},i,{radius:e})),o.setOptions(this,e),this._latlng=o.latLng(t),isNaN(this.options.radius))throw new Error(\"Circle radius cannot be NaN\");this._mRadius=this.options.radius},setRadius:function(t){return this._mRadius=t,this.redraw()},getRadius:function(){return this._mRadius},getBounds:function(){var t=[this._radius,this._radiusY||this._radius];return new o.LatLngBounds(this._map.layerPointToLatLng(this._point.subtract(t)),this._map.layerPointToLatLng(this._point.add(t)))},setStyle:o.Path.prototype.setStyle,_project:function(){var t=this._latlng.lng,e=this._latlng.lat,i=this._map,n=i.options.crs;if(n.distance===o.CRS.Earth.distance){var s=Math.PI/180,r=this._mRadius/o.CRS.Earth.R/s,a=i.project([e+r,t]),h=i.project([e-r,t]),l=a.add(h).divideBy(2),u=i.unproject(l).lat,c=Math.acos((Math.cos(r*s)-Math.sin(e*s)*Math.sin(u*s))/(Math.cos(e*s)*Math.cos(u*s)))/s;(isNaN(c)||0===c)&&(c=r/Math.cos(Math.PI/180*e)),this._point=l.subtract(i.getPixelOrigin()),this._radius=isNaN(c)?0:Math.max(Math.round(l.x-i.project([u,t-c]).x),1),this._radiusY=Math.max(Math.round(l.y-a.y),1)}else{var d=n.unproject(n.project(this._latlng).subtract([this._mRadius,0]));this._point=i.latLngToLayerPoint(this._latlng),this._radius=this._point.x-i.latLngToLayerPoint(d).x}this._updateBounds()}}),o.circle=function(t,e,i){return new o.Circle(t,e,i)},o.SVG=o.Renderer.extend({getEvents:function(){var t=o.Renderer.prototype.getEvents.call(this);return t.zoomstart=this._onZoomStart,t},_initContainer:function(){this._container=o.SVG.create(\"svg\"),this._container.setAttribute(\"pointer-events\",\"none\"),this._rootGroup=o.SVG.create(\"g\"),this._container.appendChild(this._rootGroup)},_onZoomStart:function(){this._update()},_update:function(){if(!this._map._animatingZoom||!this._bounds){o.Renderer.prototype._update.call(this);var t=this._bounds,e=t.getSize(),i=this._container;this._svgSize&&this._svgSize.equals(e)||(this._svgSize=e,i.setAttribute(\"width\",e.x),i.setAttribute(\"height\",e.y)),o.DomUtil.setPosition(i,t.min),i.setAttribute(\"viewBox\",[t.min.x,t.min.y,e.x,e.y].join(\" \")),this.fire(\"update\")}},_initPath:function(t){var e=t._path=o.SVG.create(\"path\");t.options.className&&o.DomUtil.addClass(e,t.options.className),t.options.interactive&&o.DomUtil.addClass(e,\"leaflet-interactive\"),this._updateStyle(t)},_addPath:function(t){this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){o.DomUtil.remove(t._path),t.removeInteractiveTarget(t._path)},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,i=t.options;e&&(i.stroke?(e.setAttribute(\"stroke\",i.color),e.setAttribute(\"stroke-opacity\",i.opacity),e.setAttribute(\"stroke-width\",i.weight),e.setAttribute(\"stroke-linecap\",i.lineCap),e.setAttribute(\"stroke-linejoin\",i.lineJoin),i.dashArray?e.setAttribute(\"stroke-dasharray\",i.dashArray):e.removeAttribute(\"stroke-dasharray\"),i.dashOffset?e.setAttribute(\"stroke-dashoffset\",i.dashOffset):e.removeAttribute(\"stroke-dashoffset\")):e.setAttribute(\"stroke\",\"none\"),i.fill?(e.setAttribute(\"fill\",i.fillColor||i.color),e.setAttribute(\"fill-opacity\",i.fillOpacity),e.setAttribute(\"fill-rule\",i.fillRule||\"evenodd\")):e.setAttribute(\"fill\",\"none\"))},_updatePoly:function(t,e){this._setPath(t,o.SVG.pointsToPath(t._parts,e))},_updateCircle:function(t){var e=t._point,i=t._radius,n=t._radiusY||i,o=\"a\"+i+\",\"+n+\" 0 1,0 \",s=t._empty()?\"M0 0\":\"M\"+(e.x-i)+\",\"+e.y+o+2*i+\",0 \"+o+2*-i+\",0 \";this._setPath(t,s)},_setPath:function(t,e){t._path.setAttribute(\"d\",e)},_bringToFront:function(t){o.DomUtil.toFront(t._path)},_bringToBack:function(t){o.DomUtil.toBack(t._path)}}),o.extend(o.SVG,{create:function(t){return e.createElementNS(\"http://www.w3.org/2000/svg\",t)},pointsToPath:function(t,e){var i,n,s,r,a,h,l=\"\";for(i=0,s=t.length;i<s;i++){for(a=t[i],n=0,r=a.length;n<r;n++)h=a[n],l+=(n?\"L\":\"M\")+h.x+\" \"+h.y;l+=e?o.Browser.svg?\"z\":\"x\":\"\"}return l||\"M0 0\"}}),o.Browser.svg=!(!e.createElementNS||!o.SVG.create(\"svg\").createSVGRect),o.svg=function(t){return o.Browser.svg||o.Browser.vml?new o.SVG(t):null},o.Browser.vml=!o.Browser.svg&&function(){try{var t=e.createElement(\"div\");t.innerHTML='<v:shape adj=\"1\"/>';var i=t.firstChild;return i.style.behavior=\"url(#default#VML)\",i&&\"object\"==typeof i.adj}catch(t){return!1}}(),o.SVG.include(o.Browser.vml?{_initContainer:function(){this._container=o.DomUtil.create(\"div\",\"leaflet-vml-container\")},_update:function(){this._map._animatingZoom||(o.Renderer.prototype._update.call(this),this.fire(\"update\"))},_initPath:function(t){var e=t._container=o.SVG.create(\"shape\");o.DomUtil.addClass(e,\"leaflet-vml-shape \"+(this.options.className||\"\")),e.coordsize=\"1 1\",t._path=o.SVG.create(\"path\"),e.appendChild(t._path),this._updateStyle(t)},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;o.DomUtil.remove(e),t.removeInteractiveTarget(e)},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,s=t._container;s.stroked=!!n.stroke,s.filled=!!n.fill,n.stroke?(e||(e=t._stroke=o.SVG.create(\"stroke\")),s.appendChild(e),e.weight=n.weight+\"px\",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=o.Util.isArray(n.dashArray)?n.dashArray.join(\" \"):n.dashArray.replace(/( *, *)/g,\" \"):e.dashStyle=\"\",e.endcap=n.lineCap.replace(\"butt\",\"flat\"),e.joinstyle=n.lineJoin):e&&(s.removeChild(e),t._stroke=null),n.fill?(i||(i=t._fill=o.SVG.create(\"fill\")),s.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(s.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?\"M0 0\":\"AL \"+e.x+\",\"+e.y+\" \"+i+\",\"+n+\" 0,23592600\")},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){o.DomUtil.toFront(t._container)},_bringToBack:function(t){o.DomUtil.toBack(t._container)}}:{}),o.Browser.vml&&(o.SVG.create=function(){try{return e.namespaces.add(\"lvml\",\"urn:schemas-microsoft-com:vml\"),function(t){return e.createElement(\"<lvml:\"+t+' class=\"lvml\">')}}catch(t){return function(t){return e.createElement(\"<\"+t+' xmlns=\"urn:schemas-microsoft.com:vml\" class=\"lvml\">')}}}()),o.Canvas=o.Renderer.extend({onAdd:function(){o.Renderer.prototype.onAdd.call(this),this._layers=this._layers||{},this._draw()},_initContainer:function(){var t=this._container=e.createElement(\"canvas\");o.DomEvent.on(t,\"mousemove\",o.Util.throttle(this._onMouseMove,32,this),this).on(t,\"click dblclick mousedown mouseup contextmenu\",this._onClick,this).on(t,\"mouseout\",this._handleMouseOut,this),this._ctx=t.getContext(\"2d\")},_update:function(){if(!this._map._animatingZoom||!this._bounds){this._drawnLayers={},o.Renderer.prototype._update.call(this);var t=this._bounds,e=this._container,i=t.getSize(),n=o.Browser.retina?2:1;o.DomUtil.setPosition(e,t.min),e.width=n*i.x,e.height=n*i.y,e.style.width=i.x+\"px\",e.style.height=i.y+\"px\",o.Browser.retina&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire(\"update\")}},_initPath:function(t){this._updateDashArray(t),this._layers[o.stamp(t)]=t},_addPath:o.Util.falseFn,_removePath:function(t){t._removed=!0,this._requestRedraw(t)},_updatePath:function(t){this._redrawBounds=t._pxBounds,this._draw(!0),t._project(),t._update(),this._draw(),this._redrawBounds=null},_updateStyle:function(t){this._updateDashArray(t),this._requestRedraw(t)},_updateDashArray:function(t){if(t.options.dashArray){var e,i=t.options.dashArray.split(\",\"),n=[];for(e=0;e<i.length;e++)n.push(Number(i[e]));t.options._dashArray=n}},_requestRedraw:function(t){if(this._map){var e=(t.options.weight||0)+1;this._redrawBounds=this._redrawBounds||new o.Bounds,this._redrawBounds.extend(t._pxBounds.min.subtract([e,e])),this._redrawBounds.extend(t._pxBounds.max.add([e,e])),this._redrawRequest=this._redrawRequest||o.Util.requestAnimFrame(this._redraw,this)}},_redraw:function(){this._redrawRequest=null,this._draw(!0),this._draw(),this._redrawBounds=null},_draw:function(t){this._clear=t;var e,i=this._redrawBounds;this._ctx.save(),i&&(this._ctx.beginPath(),this._ctx.rect(i.min.x,i.min.y,i.max.x-i.min.x,i.max.y-i.min.y),this._ctx.clip());for(var n in this._layers)e=this._layers[n],(!i||e._pxBounds&&e._pxBounds.intersects(i))&&e._updatePath(),t&&e._removed&&(delete e._removed,delete this._layers[n]);this._ctx.restore()},_updatePoly:function(t,e){var i,n,o,s,r=t._parts,a=r.length,h=this._ctx;if(a){for(this._drawnLayers[t._leaflet_id]=t,h.beginPath(),h.setLineDash&&h.setLineDash(t.options&&t.options._dashArray||[]),i=0;i<a;i++){for(n=0,o=r[i].length;n<o;n++)s=r[i][n],h[n?\"lineTo\":\"moveTo\"](s.x,s.y);e&&h.closePath()}this._fillStroke(h,t)}},_updateCircle:function(t){if(!t._empty()){var e=t._point,i=this._ctx,n=t._radius,o=(t._radiusY||n)/n;this._drawnLayers[t._leaflet_id]=t,1!==o&&(i.save(),i.scale(1,o)),i.beginPath(),i.arc(e.x,e.y/o,n,0,2*Math.PI,!1),1!==o&&i.restore(),this._fillStroke(i,t)}},_fillStroke:function(t,e){var i=this._clear,n=e.options;t.globalCompositeOperation=i?\"destination-out\":\"source-over\",n.fill&&(t.globalAlpha=i?1:n.fillOpacity,t.fillStyle=n.fillColor||n.color,t.fill(n.fillRule||\"evenodd\")),n.stroke&&0!==n.weight&&(t.globalAlpha=i?1:n.opacity,e._prevWeight=t.lineWidth=i?e._prevWeight+1:n.weight,t.strokeStyle=n.color,t.lineCap=n.lineCap,t.lineJoin=n.lineJoin,t.stroke())},_onClick:function(t){var e,i=this._map.mouseEventToLayerPoint(t),n=[];for(var s in this._layers)e=this._layers[s],e.options.interactive&&e._containsPoint(i)&&!this._map._draggableMoved(e)&&(o.DomEvent._fakeStop(t),n.push(e));n.length&&this._fireEvent(n,t)},_onMouseMove:function(t){if(this._map&&!this._map.dragging.moving()&&!this._map._animatingZoom){var e=this._map.mouseEventToLayerPoint(t);this._handleMouseOut(t,e),this._handleMouseHover(t,e)}},_handleMouseOut:function(t,e){var i=this._hoveredLayer;!i||\"mouseout\"!==t.type&&i._containsPoint(e)||(o.DomUtil.removeClass(this._container,\"leaflet-interactive\"),this._fireEvent([i],t,\"mouseout\"),this._hoveredLayer=null)},_handleMouseHover:function(t,e){var i,n;for(i in this._drawnLayers)n=this._drawnLayers[i],n.options.interactive&&n._containsPoint(e)&&(o.DomUtil.addClass(this._container,\"leaflet-interactive\"),this._fireEvent([n],t,\"mouseover\"),this._hoveredLayer=n);this._hoveredLayer&&this._fireEvent([this._hoveredLayer],t)},_fireEvent:function(t,e,i){this._map._fireDOMEvent(e,i||e.type,t)},_bringToFront:o.Util.falseFn,_bringToBack:o.Util.falseFn}),o.Browser.canvas=function(){return!!e.createElement(\"canvas\").getContext}(),o.canvas=function(t){return o.Browser.canvas?new o.Canvas(t):null},o.Polyline.prototype._containsPoint=function(t,e){var i,n,s,r,a,h,l=this._clickTolerance();if(!this._pxBounds.contains(t))return!1;for(i=0,r=this._parts.length;i<r;i++)for(h=this._parts[i],n=0,a=h.length,s=a-1;n<a;s=n++)if((e||0!==n)&&o.LineUtil.pointToSegmentDistance(t,h[s],h[n])<=l)return!0;return!1},o.Polygon.prototype._containsPoint=function(t){var e,i,n,s,r,a,h,l,u=!1;if(!this._pxBounds.contains(t))return!1;for(s=0,h=this._parts.length;s<h;s++)for(e=this._parts[s],r=0,l=e.length,a=l-1;r<l;a=r++)i=e[r],n=e[a],i.y>t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(u=!u);return u||o.Polyline.prototype._containsPoint.call(this,t,!0)},o.CircleMarker.prototype._containsPoint=function(t){return t.distanceTo(this._point)<=this._radius+this._clickTolerance()},o.GeoJSON=o.FeatureGroup.extend({initialize:function(t,e){o.setOptions(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,s=o.Util.isArray(t)?t:t.features;if(s){for(e=0,i=s.length;e<i;e++)n=s[e],(n.geometries||n.geometry||n.features||n.coordinates)&&this.addData(n);return this;\r\n}var r=this.options;if(r.filter&&!r.filter(t))return this;var a=o.GeoJSON.geometryToLayer(t,r);return a?(a.feature=o.GeoJSON.asFeature(t),a.defaultOptions=a.options,this.resetStyle(a),r.onEachFeature&&r.onEachFeature(t,a),this.addLayer(a)):this},resetStyle:function(t){return t.options=o.Util.extend({},t.defaultOptions),this._setLayerStyle(t,this.options.style),this},setStyle:function(t){return this.eachLayer(function(e){this._setLayerStyle(e,t)},this)},_setLayerStyle:function(t,e){\"function\"==typeof e&&(e=e(t.feature)),t.setStyle&&t.setStyle(e)}}),o.extend(o.GeoJSON,{geometryToLayer:function(t,e){var i,n,s,r,a=\"Feature\"===t.type?t.geometry:t,h=a?a.coordinates:null,l=[],u=e&&e.pointToLayer,c=e&&e.coordsToLatLng||this.coordsToLatLng;if(!h&&!a)return null;switch(a.type){case\"Point\":return i=c(h),u?u(t,i):new o.Marker(i);case\"MultiPoint\":for(s=0,r=h.length;s<r;s++)i=c(h[s]),l.push(u?u(t,i):new o.Marker(i));return new o.FeatureGroup(l);case\"LineString\":case\"MultiLineString\":return n=this.coordsToLatLngs(h,\"LineString\"===a.type?0:1,c),new o.Polyline(n,e);case\"Polygon\":case\"MultiPolygon\":return n=this.coordsToLatLngs(h,\"Polygon\"===a.type?1:2,c),new o.Polygon(n,e);case\"GeometryCollection\":for(s=0,r=a.geometries.length;s<r;s++){var d=this.geometryToLayer({geometry:a.geometries[s],type:\"Feature\",properties:t.properties},e);d&&l.push(d)}return new o.FeatureGroup(l);default:throw new Error(\"Invalid GeoJSON object.\")}},coordsToLatLng:function(t){return new o.LatLng(t[1],t[0],t[2])},coordsToLatLngs:function(t,e,i){for(var n,o=[],s=0,r=t.length;s<r;s++)n=e?this.coordsToLatLngs(t[s],e-1,i):(i||this.coordsToLatLng)(t[s]),o.push(n);return o},latLngToCoords:function(t){return t.alt!==i?[t.lng,t.lat,t.alt]:[t.lng,t.lat]},latLngsToCoords:function(t,e,i){for(var n=[],s=0,r=t.length;s<r;s++)n.push(e?o.GeoJSON.latLngsToCoords(t[s],e-1,i):o.GeoJSON.latLngToCoords(t[s]));return!e&&i&&n.push(n[0]),n},getFeature:function(t,e){return t.feature?o.extend({},t.feature,{geometry:e}):o.GeoJSON.asFeature(e)},asFeature:function(t){return\"Feature\"===t.type?t:{type:\"Feature\",properties:{},geometry:t}}});var r={toGeoJSON:function(){return o.GeoJSON.getFeature(this,{type:\"Point\",coordinates:o.GeoJSON.latLngToCoords(this.getLatLng())})}};o.Marker.include(r),o.Circle.include(r),o.CircleMarker.include(r),o.Polyline.prototype.toGeoJSON=function(){var t=!o.Polyline._flat(this._latlngs),e=o.GeoJSON.latLngsToCoords(this._latlngs,t?1:0);return o.GeoJSON.getFeature(this,{type:(t?\"Multi\":\"\")+\"LineString\",coordinates:e})},o.Polygon.prototype.toGeoJSON=function(){var t=!o.Polyline._flat(this._latlngs),e=t&&!o.Polyline._flat(this._latlngs[0]),i=o.GeoJSON.latLngsToCoords(this._latlngs,e?2:t?1:0,!0);return t||(i=[i]),o.GeoJSON.getFeature(this,{type:(e?\"Multi\":\"\")+\"Polygon\",coordinates:i})},o.LayerGroup.include({toMultiPoint:function(){var t=[];return this.eachLayer(function(e){t.push(e.toGeoJSON().geometry.coordinates)}),o.GeoJSON.getFeature(this,{type:\"MultiPoint\",coordinates:t})},toGeoJSON:function(){var t=this.feature&&this.feature.geometry&&this.feature.geometry.type;if(\"MultiPoint\"===t)return this.toMultiPoint();var e=\"GeometryCollection\"===t,i=[];return this.eachLayer(function(t){if(t.toGeoJSON){var n=t.toGeoJSON();i.push(e?n.geometry:o.GeoJSON.asFeature(n))}}),e?o.GeoJSON.getFeature(this,{geometries:i,type:\"GeometryCollection\"}):{type:\"FeatureCollection\",features:i}}}),o.geoJSON=function(t,e){return new o.GeoJSON(t,e)},o.geoJson=o.geoJSON;var a=\"_leaflet_events\";o.DomEvent={on:function(t,e,i,n){if(\"object\"==typeof e)for(var s in e)this._on(t,s,e[s],i);else{e=o.Util.splitWords(e);for(var r=0,a=e.length;r<a;r++)this._on(t,e[r],i,n)}return this},off:function(t,e,i,n){if(\"object\"==typeof e)for(var s in e)this._off(t,s,e[s],i);else{e=o.Util.splitWords(e);for(var r=0,a=e.length;r<a;r++)this._off(t,e[r],i,n)}return this},_on:function(e,i,n,s){var r=i+o.stamp(n)+(s?\"_\"+o.stamp(s):\"\");if(e[a]&&e[a][r])return this;var h=function(i){return n.call(s||e,i||t.event)},l=h;return o.Browser.pointer&&0===i.indexOf(\"touch\")?this.addPointerListener(e,i,h,r):o.Browser.touch&&\"dblclick\"===i&&this.addDoubleTapListener?this.addDoubleTapListener(e,h,r):\"addEventListener\"in e?\"mousewheel\"===i?e.addEventListener(\"onwheel\"in e?\"wheel\":\"mousewheel\",h,!1):\"mouseenter\"===i||\"mouseleave\"===i?(h=function(i){i=i||t.event,o.DomEvent._isExternalTarget(e,i)&&l(i)},e.addEventListener(\"mouseenter\"===i?\"mouseover\":\"mouseout\",h,!1)):(\"click\"===i&&o.Browser.android&&(h=function(t){return o.DomEvent._filterClick(t,l)}),e.addEventListener(i,h,!1)):\"attachEvent\"in e&&e.attachEvent(\"on\"+i,h),e[a]=e[a]||{},e[a][r]=h,this},_off:function(t,e,i,n){var s=e+o.stamp(i)+(n?\"_\"+o.stamp(n):\"\"),r=t[a]&&t[a][s];return r?(o.Browser.pointer&&0===e.indexOf(\"touch\")?this.removePointerListener(t,e,s):o.Browser.touch&&\"dblclick\"===e&&this.removeDoubleTapListener?this.removeDoubleTapListener(t,s):\"removeEventListener\"in t?\"mousewheel\"===e?t.removeEventListener(\"onwheel\"in t?\"wheel\":\"mousewheel\",r,!1):t.removeEventListener(\"mouseenter\"===e?\"mouseover\":\"mouseleave\"===e?\"mouseout\":e,r,!1):\"detachEvent\"in t&&t.detachEvent(\"on\"+e,r),t[a][s]=null,this):this},stopPropagation:function(t){return t.stopPropagation?t.stopPropagation():t.originalEvent?t.originalEvent._stopped=!0:t.cancelBubble=!0,o.DomEvent._skipped(t),this},disableScrollPropagation:function(t){return o.DomEvent.on(t,\"mousewheel\",o.DomEvent.stopPropagation)},disableClickPropagation:function(t){var e=o.DomEvent.stopPropagation;return o.DomEvent.on(t,o.Draggable.START.join(\" \"),e),o.DomEvent.on(t,{click:o.DomEvent._fakeStop,dblclick:e})},preventDefault:function(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this},stop:function(t){return o.DomEvent.preventDefault(t).stopPropagation(t)},getMousePosition:function(t,e){if(!e)return new o.Point(t.clientX,t.clientY);var i=e.getBoundingClientRect();return new o.Point(t.clientX-i.left-e.clientLeft,t.clientY-i.top-e.clientTop)},_wheelPxFactor:o.Browser.win&&o.Browser.chrome?2:o.Browser.gecko?t.devicePixelRatio:1,getWheelDelta:function(t){return o.Browser.edge?t.wheelDeltaY/2:t.deltaY&&0===t.deltaMode?-t.deltaY/o.DomEvent._wheelPxFactor:t.deltaY&&1===t.deltaMode?20*-t.deltaY:t.deltaY&&2===t.deltaMode?60*-t.deltaY:t.deltaX||t.deltaZ?0:t.wheelDelta?(t.wheelDeltaY||t.wheelDelta)/2:t.detail&&Math.abs(t.detail)<32765?20*-t.detail:t.detail?t.detail/-32765*60:0},_skipEvents:{},_fakeStop:function(t){o.DomEvent._skipEvents[t.type]=!0},_skipped:function(t){var e=this._skipEvents[t.type];return this._skipEvents[t.type]=!1,e},_isExternalTarget:function(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch(t){return!1}return i!==t},_filterClick:function(t,e){var i=t.timeStamp||t.originalEvent&&t.originalEvent.timeStamp,n=o.DomEvent._lastClick&&i-o.DomEvent._lastClick;return n&&n>100&&n<500||t.target._simulatedClick&&!t._simulated?void o.DomEvent.stop(t):(o.DomEvent._lastClick=i,void e(t))}},o.DomEvent.addListener=o.DomEvent.on,o.DomEvent.removeListener=o.DomEvent.off,o.Draggable=o.Evented.extend({options:{clickTolerance:3},statics:{START:o.Browser.touch?[\"touchstart\",\"mousedown\"]:[\"mousedown\"],END:{mousedown:\"mouseup\",touchstart:\"touchend\",pointerdown:\"touchend\",MSPointerDown:\"touchend\"},MOVE:{mousedown:\"mousemove\",touchstart:\"touchmove\",pointerdown:\"touchmove\",MSPointerDown:\"touchmove\"}},initialize:function(t,e,i){this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(o.DomEvent.on(this._dragStartTarget,o.Draggable.START.join(\" \"),this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(o.DomEvent.off(this._dragStartTarget,o.Draggable.START.join(\" \"),this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(!t._simulated&&this._enabled&&(this._moved=!1,!o.DomUtil.hasClass(this._element,\"leaflet-zoom-anim\")&&!(o.Draggable._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches)&&this._enabled&&(o.Draggable._dragging=!0,this._preventOutline&&o.DomUtil.preventOutline(this._element),o.DomUtil.disableImageDrag(),o.DomUtil.disableTextSelection(),!this._moving))){this.fire(\"down\");var i=t.touches?t.touches[0]:t;this._startPoint=new o.Point(i.clientX,i.clientY),o.DomEvent.on(e,o.Draggable.MOVE[t.type],this._onMove,this).on(e,o.Draggable.END[t.type],this._onUp,this)}},_onMove:function(i){if(!i._simulated&&this._enabled){if(i.touches&&i.touches.length>1)return void(this._moved=!0);var n=i.touches&&1===i.touches.length?i.touches[0]:i,s=new o.Point(n.clientX,n.clientY),r=s.subtract(this._startPoint);(r.x||r.y)&&(Math.abs(r.x)+Math.abs(r.y)<this.options.clickTolerance||(o.DomEvent.preventDefault(i),this._moved||(this.fire(\"dragstart\"),this._moved=!0,this._startPos=o.DomUtil.getPosition(this._element).subtract(r),o.DomUtil.addClass(e.body,\"leaflet-dragging\"),this._lastTarget=i.target||i.srcElement,t.SVGElementInstance&&this._lastTarget instanceof SVGElementInstance&&(this._lastTarget=this._lastTarget.correspondingUseElement),o.DomUtil.addClass(this._lastTarget,\"leaflet-drag-target\")),this._newPos=this._startPos.add(r),this._moving=!0,o.Util.cancelAnimFrame(this._animRequest),this._lastEvent=i,this._animRequest=o.Util.requestAnimFrame(this._updatePosition,this,!0)))}},_updatePosition:function(){var t={originalEvent:this._lastEvent};this.fire(\"predrag\",t),o.DomUtil.setPosition(this._element,this._newPos),this.fire(\"drag\",t)},_onUp:function(t){if(!t._simulated&&this._enabled){o.DomUtil.removeClass(e.body,\"leaflet-dragging\"),this._lastTarget&&(o.DomUtil.removeClass(this._lastTarget,\"leaflet-drag-target\"),this._lastTarget=null);for(var i in o.Draggable.MOVE)o.DomEvent.off(e,o.Draggable.MOVE[i],this._onMove,this).off(e,o.Draggable.END[i],this._onUp,this);o.DomUtil.enableImageDrag(),o.DomUtil.enableTextSelection(),this._moved&&this._moving&&(o.Util.cancelAnimFrame(this._animRequest),this.fire(\"dragend\",{distance:this._newPos.distanceTo(this._startPos)})),this._moving=!1,o.Draggable._dragging=!1}}}),o.Handler=o.Class.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}}),o.Map.mergeOptions({dragging:!0,inertia:!o.Browser.android23,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0}),o.Map.Drag=o.Handler.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new o.Draggable(t._mapPane,t._container),this._draggable.on({down:this._onDown,dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on(\"predrag\",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on(\"predrag\",this._onPreDragWrap,this),t.on(\"zoomend\",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}o.DomUtil.addClass(this._map._container,\"leaflet-grab leaflet-touch-drag\"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){o.DomUtil.removeClass(this._map._container,\"leaflet-grab\"),o.DomUtil.removeClass(this._map._container,\"leaflet-touch-drag\"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDown:function(){this._map._stop()},_onDragStart:function(){var t=this._map;if(this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var e=o.latLngBounds(this._map.options.maxBounds);this._offsetLimit=o.bounds(this._map.latLngToContainerPoint(e.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(e.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire(\"movestart\").fire(\"dragstart\"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(i),this._times.push(e),e-this._times[0]>50&&(this._positions.shift(),this._times.shift())}this._map.fire(\"move\",t).fire(\"drag\",t)},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,e){return t-(t-e)*this._viscosity},_onPreDragLimit:function(){if(this._viscosity&&this._offsetLimit){var t=this._draggable._newPos.subtract(this._draggable._startPos),e=this._offsetLimit;t.x<e.min.x&&(t.x=this._viscousLimit(t.x,e.min.x)),t.y<e.min.y&&(t.y=this._viscousLimit(t.y,e.min.y)),t.x>e.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,s=(n+e+i)%t-e-i,r=Math.abs(o+i)<Math.abs(s+i)?o:s;this._draggable._absPos=this._draggable._newPos.clone(),this._draggable._newPos.x=r},_onDragEnd:function(t){var e=this._map,i=e.options,n=!i.inertia||this._times.length<2;if(e.fire(\"dragend\",t),n)e.fire(\"moveend\");else{var s=this._lastPos.subtract(this._positions[0]),r=(this._lastTime-this._times[0])/1e3,a=i.easeLinearity,h=s.multiplyBy(a/r),l=h.distanceTo([0,0]),u=Math.min(i.inertiaMaxSpeed,l),c=h.multiplyBy(u/l),d=u/(i.inertiaDeceleration*a),_=c.multiplyBy(-d/2).round();_.x||_.y?(_=e._limitOffset(_,e.options.maxBounds),o.Util.requestAnimFrame(function(){e.panBy(_,{duration:d,easeLinearity:a,noMoveStart:!0,animate:!0})})):e.fire(\"moveend\")}}}),o.Map.addInitHook(\"addHandler\",\"dragging\",o.Map.Drag),o.Map.mergeOptions({doubleClickZoom:!0}),o.Map.DoubleClickZoom=o.Handler.extend({addHooks:function(){this._map.on(\"dblclick\",this._onDoubleClick,this)},removeHooks:function(){this._map.off(\"dblclick\",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=e.options.zoomDelta,o=t.originalEvent.shiftKey?i-n:i+n;\"center\"===e.options.doubleClickZoom?e.setZoom(o):e.setZoomAround(t.containerPoint,o)}}),o.Map.addInitHook(\"addHandler\",\"doubleClickZoom\",o.Map.DoubleClickZoom),o.Map.mergeOptions({scrollWheelZoom:!0,wheelDebounceTime:40,wheelPxPerZoomLevel:60}),o.Map.ScrollWheelZoom=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,\"mousewheel\",this._onWheelScroll,this),this._delta=0},removeHooks:function(){o.DomEvent.off(this._map._container,\"mousewheel\",this._onWheelScroll,this)},_onWheelScroll:function(t){var e=o.DomEvent.getWheelDelta(t),i=this._map.options.wheelDebounceTime;this._delta+=e,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date);var n=Math.max(i-(+new Date-this._startTime),0);clearTimeout(this._timer),this._timer=setTimeout(o.bind(this._performZoom,this),n),o.DomEvent.stop(t)},_performZoom:function(){var t=this._map,e=t.getZoom(),i=this._map.options.zoomSnap||0;t._stop();var n=this._delta/(4*this._map.options.wheelPxPerZoomLevel),o=4*Math.log(2/(1+Math.exp(-Math.abs(n))))/Math.LN2,s=i?Math.ceil(o/i)*i:o,r=t._limitZoom(e+(this._delta>0?s:-s))-e;this._delta=0,this._startTime=null,r&&(\"center\"===t.options.scrollWheelZoom?t.setZoom(e+r):t.setZoomAround(this._lastMousePos,e+r))}}),o.Map.addInitHook(\"addHandler\",\"scrollWheelZoom\",o.Map.ScrollWheelZoom),o.extend(o.DomEvent,{_touchstart:o.Browser.msPointer?\"MSPointerDown\":o.Browser.pointer?\"pointerdown\":\"touchstart\",_touchend:o.Browser.msPointer?\"MSPointerUp\":o.Browser.pointer?\"pointerup\":\"touchend\",addDoubleTapListener:function(t,e,i){function n(t){var e;if(e=o.Browser.pointer?o.DomEvent._pointersCount:t.touches.length,!(e>1)){var i=Date.now(),n=i-(r||i);a=t.touches?t.touches[0]:t,h=n>0&&n<=l,r=i}}function s(){if(h&&!a.cancelBubble){if(o.Browser.pointer){var t,i,n={};for(i in a)t=a[i],n[i]=t&&t.bind?t.bind(a):t;a=n}a.type=\"dblclick\",e(a),r=null}}var r,a,h=!1,l=250,u=\"_leaflet_\",c=this._touchstart,d=this._touchend;return t[u+c+i]=n,t[u+d+i]=s,t[u+\"dblclick\"+i]=e,t.addEventListener(c,n,!1),t.addEventListener(d,s,!1),o.Browser.edge||t.addEventListener(\"dblclick\",e,!1),this},removeDoubleTapListener:function(t,e){var i=\"_leaflet_\",n=t[i+this._touchstart+e],s=t[i+this._touchend+e],r=t[i+\"dblclick\"+e];return t.removeEventListener(this._touchstart,n,!1),t.removeEventListener(this._touchend,s,!1),o.Browser.edge||t.removeEventListener(\"dblclick\",r,!1),this}}),o.extend(o.DomEvent,{POINTER_DOWN:o.Browser.msPointer?\"MSPointerDown\":\"pointerdown\",POINTER_MOVE:o.Browser.msPointer?\"MSPointerMove\":\"pointermove\",POINTER_UP:o.Browser.msPointer?\"MSPointerUp\":\"pointerup\",POINTER_CANCEL:o.Browser.msPointer?\"MSPointerCancel\":\"pointercancel\",TAG_WHITE_LIST:[\"INPUT\",\"SELECT\",\"OPTION\"],_pointers:{},_pointersCount:0,addPointerListener:function(t,e,i,n){return\"touchstart\"===e?this._addPointerStart(t,i,n):\"touchmove\"===e?this._addPointerMove(t,i,n):\"touchend\"===e&&this._addPointerEnd(t,i,n),this},removePointerListener:function(t,e,i){var n=t[\"_leaflet_\"+e+i];return\"touchstart\"===e?t.removeEventListener(this.POINTER_DOWN,n,!1):\"touchmove\"===e?t.removeEventListener(this.POINTER_MOVE,n,!1):\"touchend\"===e&&(t.removeEventListener(this.POINTER_UP,n,!1),t.removeEventListener(this.POINTER_CANCEL,n,!1)),this},_addPointerStart:function(t,i,n){var s=o.bind(function(t){if(\"mouse\"!==t.pointerType&&t.pointerType!==t.MSPOINTER_TYPE_MOUSE){if(!(this.TAG_WHITE_LIST.indexOf(t.target.tagName)<0))return;o.DomEvent.preventDefault(t)}this._handlePointer(t,i)},this);if(t[\"_leaflet_touchstart\"+n]=s,t.addEventListener(this.POINTER_DOWN,s,!1),!this._pointerDocListener){var r=o.bind(this._globalPointerUp,this);e.documentElement.addEventListener(this.POINTER_DOWN,o.bind(this._globalPointerDown,this),!0),e.documentElement.addEventListener(this.POINTER_MOVE,o.bind(this._globalPointerMove,this),!0),e.documentElement.addEventListener(this.POINTER_UP,r,!0),e.documentElement.addEventListener(this.POINTER_CANCEL,r,!0),this._pointerDocListener=!0}},_globalPointerDown:function(t){this._pointers[t.pointerId]=t,this._pointersCount++},_globalPointerMove:function(t){this._pointers[t.pointerId]&&(this._pointers[t.pointerId]=t)},_globalPointerUp:function(t){delete this._pointers[t.pointerId],this._pointersCount--},_handlePointer:function(t,e){t.touches=[];for(var i in this._pointers)t.touches.push(this._pointers[i]);t.changedTouches=[t],e(t)},_addPointerMove:function(t,e,i){var n=o.bind(function(t){(t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&\"mouse\"!==t.pointerType||0!==t.buttons)&&this._handlePointer(t,e)},this);t[\"_leaflet_touchmove\"+i]=n,t.addEventListener(this.POINTER_MOVE,n,!1)},_addPointerEnd:function(t,e,i){var n=o.bind(function(t){this._handlePointer(t,e)},this);t[\"_leaflet_touchend\"+i]=n,t.addEventListener(this.POINTER_UP,n,!1),t.addEventListener(this.POINTER_CANCEL,n,!1)}}),o.Map.mergeOptions({touchZoom:o.Browser.touch&&!o.Browser.android23,bounceAtZoomLimits:!0}),o.Map.TouchZoom=o.Handler.extend({addHooks:function(){o.DomUtil.addClass(this._map._container,\"leaflet-touch-zoom\"),o.DomEvent.on(this._map._container,\"touchstart\",this._onTouchStart,this)},removeHooks:function(){o.DomUtil.removeClass(this._map._container,\"leaflet-touch-zoom\"),o.DomEvent.off(this._map._container,\"touchstart\",this._onTouchStart,this)},_onTouchStart:function(t){var i=this._map;if(t.touches&&2===t.touches.length&&!i._animatingZoom&&!this._zooming){var n=i.mouseEventToContainerPoint(t.touches[0]),s=i.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=i.getSize()._divideBy(2),this._startLatLng=i.containerPointToLatLng(this._centerPoint),\"center\"!==i.options.touchZoom&&(this._pinchStartLatLng=i.containerPointToLatLng(n.add(s)._divideBy(2))),this._startDist=n.distanceTo(s),this._startZoom=i.getZoom(),this._moved=!1,this._zooming=!0,i._stop(),o.DomEvent.on(e,\"touchmove\",this._onTouchMove,this).on(e,\"touchend\",this._onTouchEnd,this),o.DomEvent.preventDefault(t)}},_onTouchMove:function(t){if(t.touches&&2===t.touches.length&&this._zooming){var e=this._map,i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]),s=i.distanceTo(n)/this._startDist;if(this._zoom=e.getScaleZoom(s,this._startZoom),!e.options.bounceAtZoomLimits&&(this._zoom<e.getMinZoom()&&s<1||this._zoom>e.getMaxZoom()&&s>1)&&(this._zoom=e._limitZoom(this._zoom)),\"center\"===e.options.touchZoom){if(this._center=this._startLatLng,1===s)return}else{var r=i._add(n)._divideBy(2)._subtract(this._centerPoint);if(1===s&&0===r.x&&0===r.y)return;this._center=e.unproject(e.project(this._pinchStartLatLng,this._zoom).subtract(r),this._zoom)}this._moved||(e._moveStart(!0),this._moved=!0),o.Util.cancelAnimFrame(this._animRequest);var a=o.bind(e._move,e,this._center,this._zoom,{pinch:!0,round:!1});this._animRequest=o.Util.requestAnimFrame(a,this,!0),o.DomEvent.preventDefault(t)}},_onTouchEnd:function(){return this._moved&&this._zooming?(this._zooming=!1,o.Util.cancelAnimFrame(this._animRequest),o.DomEvent.off(e,\"touchmove\",this._onTouchMove).off(e,\"touchend\",this._onTouchEnd),void(this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom)))):void(this._zooming=!1)}}),o.Map.addInitHook(\"addHandler\",\"touchZoom\",o.Map.TouchZoom),o.Map.mergeOptions({tap:!0,tapTolerance:15}),o.Map.Tap=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,\"touchstart\",this._onDown,this)},removeHooks:function(){o.DomEvent.off(this._map._container,\"touchstart\",this._onDown,this)},_onDown:function(t){if(t.touches){if(o.DomEvent.preventDefault(t),this._fireClick=!0,t.touches.length>1)return this._fireClick=!1,void clearTimeout(this._holdTimeout);var i=t.touches[0],n=i.target;this._startPos=this._newPos=new o.Point(i.clientX,i.clientY),n.tagName&&\"a\"===n.tagName.toLowerCase()&&o.DomUtil.addClass(n,\"leaflet-active\"),this._holdTimeout=setTimeout(o.bind(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent(\"contextmenu\",i))},this),1e3),this._simulateEvent(\"mousedown\",i),o.DomEvent.on(e,{touchmove:this._onMove,touchend:this._onUp},this)}},_onUp:function(t){if(clearTimeout(this._holdTimeout),o.DomEvent.off(e,{touchmove:this._onMove,touchend:this._onUp},this),this._fireClick&&t&&t.changedTouches){var i=t.changedTouches[0],n=i.target;n&&n.tagName&&\"a\"===n.tagName.toLowerCase()&&o.DomUtil.removeClass(n,\"leaflet-active\"),this._simulateEvent(\"mouseup\",i),this._isTapValid()&&this._simulateEvent(\"click\",i)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(t){var e=t.touches[0];this._newPos=new o.Point(e.clientX,e.clientY),this._simulateEvent(\"mousemove\",e)},_simulateEvent:function(i,n){var o=e.createEvent(\"MouseEvents\");o._simulated=!0,n.target._simulatedClick=!0,o.initMouseEvent(i,!0,!0,t,1,n.screenX,n.screenY,n.clientX,n.clientY,!1,!1,!1,!1,0,null),n.target.dispatchEvent(o)}}),o.Browser.touch&&!o.Browser.pointer&&o.Map.addInitHook(\"addHandler\",\"tap\",o.Map.Tap),o.Map.mergeOptions({boxZoom:!0}),o.Map.BoxZoom=o.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane},addHooks:function(){o.DomEvent.on(this._container,\"mousedown\",this._onMouseDown,this)},removeHooks:function(){o.DomEvent.off(this._container,\"mousedown\",this._onMouseDown,this)},moved:function(){return this._moved},_resetState:function(){this._moved=!1},_onMouseDown:function(t){return!(!t.shiftKey||1!==t.which&&1!==t.button)&&(this._resetState(),o.DomUtil.disableTextSelection(),o.DomUtil.disableImageDrag(),this._startPoint=this._map.mouseEventToContainerPoint(t),void o.DomEvent.on(e,{contextmenu:o.DomEvent.stop,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this))},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=o.DomUtil.create(\"div\",\"leaflet-zoom-box\",this._container),o.DomUtil.addClass(this._container,\"leaflet-crosshair\"),this._map.fire(\"boxzoomstart\")),this._point=this._map.mouseEventToContainerPoint(t);var e=new o.Bounds(this._point,this._startPoint),i=e.getSize();o.DomUtil.setPosition(this._box,e.min),this._box.style.width=i.x+\"px\",this._box.style.height=i.y+\"px\"},_finish:function(){this._moved&&(o.DomUtil.remove(this._box),o.DomUtil.removeClass(this._container,\"leaflet-crosshair\")),o.DomUtil.enableTextSelection(),o.DomUtil.enableImageDrag(),o.DomEvent.off(e,{contextmenu:o.DomEvent.stop,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if((1===t.which||1===t.button)&&(this._finish(),this._moved)){setTimeout(o.bind(this._resetState,this),0);var e=new o.LatLngBounds(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(e).fire(\"boxzoomend\",{boxZoomBounds:e})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}}),o.Map.addInitHook(\"addHandler\",\"boxZoom\",o.Map.BoxZoom),o.Map.mergeOptions({keyboard:!0,keyboardPanDelta:80}),o.Map.Keyboard=o.Handler.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,54,173]},initialize:function(t){this._map=t,this._setPanDelta(t.options.keyboardPanDelta),this._setZoomDelta(t.options.zoomDelta)},addHooks:function(){var t=this._map._container;t.tabIndex<=0&&(t.tabIndex=\"0\"),o.DomEvent.on(t,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.on({focus:this._addHooks,blur:this._removeHooks},this)},removeHooks:function(){this._removeHooks(),o.DomEvent.off(this._map._container,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.off({focus:this._addHooks,blur:this._removeHooks},this)},_onMouseDown:function(){if(!this._focused){var i=e.body,n=e.documentElement,o=i.scrollTop||n.scrollTop,s=i.scrollLeft||n.scrollLeft;this._map._container.focus(),t.scrollTo(s,o)}},_onFocus:function(){this._focused=!0,this._map.fire(\"focus\")},_onBlur:function(){this._focused=!1,this._map.fire(\"blur\")},_setPanDelta:function(t){var e,i,n=this._panKeys={},o=this.keyCodes;for(e=0,i=o.left.length;e<i;e++)n[o.left[e]]=[-1*t,0];for(e=0,i=o.right.length;e<i;e++)n[o.right[e]]=[t,0];for(e=0,i=o.down.length;e<i;e++)n[o.down[e]]=[0,t];for(e=0,i=o.up.length;e<i;e++)n[o.up[e]]=[0,-1*t]},_setZoomDelta:function(t){var e,i,n=this._zoomKeys={},o=this.keyCodes;for(e=0,i=o.zoomIn.length;e<i;e++)n[o.zoomIn[e]]=t;for(e=0,i=o.zoomOut.length;e<i;e++)n[o.zoomOut[e]]=-t},_addHooks:function(){o.DomEvent.on(e,\"keydown\",this._onKeyDown,this)},_removeHooks:function(){o.DomEvent.off(e,\"keydown\",this._onKeyDown,this)},_onKeyDown:function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var e,i=t.keyCode,n=this._map;if(i in this._panKeys){if(n._panAnim&&n._panAnim._inProgress)return;e=this._panKeys[i],t.shiftKey&&(e=o.point(e).multiplyBy(3)),n.panBy(e),n.options.maxBounds&&n.panInsideBounds(n.options.maxBounds)}else if(i in this._zoomKeys)n.setZoom(n.getZoom()+(t.shiftKey?3:1)*this._zoomKeys[i]);else{if(27!==i)return;n.closePopup()}o.DomEvent.stop(t)}}}),o.Map.addInitHook(\"addHandler\",\"keyboard\",o.Map.Keyboard),o.Handler.MarkerDrag=o.Handler.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new o.Draggable(t,t,!0)),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this).enable(),o.DomUtil.addClass(t,\"leaflet-marker-draggable\")},removeHooks:function(){this._draggable.off({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this).disable(),this._marker._icon&&o.DomUtil.removeClass(this._marker._icon,\"leaflet-marker-draggable\")},moved:function(){return this._draggable&&this._draggable._moved},_onDragStart:function(){this._oldLatLng=this._marker.getLatLng(),this._marker.closePopup().fire(\"movestart\").fire(\"dragstart\")},_onDrag:function(t){var e=this._marker,i=e._shadow,n=o.DomUtil.getPosition(e._icon),s=e._map.layerPointToLatLng(n);i&&o.DomUtil.setPosition(i,n),e._latlng=s,t.latlng=s,t.oldLatLng=this._oldLatLng,e.fire(\"move\",t).fire(\"drag\",t)},_onDragEnd:function(t){delete this._oldLatLng,this._marker.fire(\"moveend\").fire(\"dragend\",t)}}),o.Control=o.Class.extend({options:{position:\"topright\"},initialize:function(t){o.setOptions(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),n=t._controlCorners[i];return o.DomUtil.addClass(e,\"leaflet-control\"),i.indexOf(\"bottom\")!==-1?n.insertBefore(e,n.firstChild):n.appendChild(e),this},remove:function(){return this._map?(o.DomUtil.remove(this._container),this.onRemove&&this.onRemove(this._map),this._map=null,this):this},_refocusOnMap:function(t){this._map&&t&&t.screenX>0&&t.screenY>0&&this._map.getContainer().focus()}}),o.control=function(t){return new o.Control(t)},o.Map.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){function t(t,s){var r=i+t+\" \"+i+s;e[t+s]=o.DomUtil.create(\"div\",r,n)}var e=this._controlCorners={},i=\"leaflet-\",n=this._controlContainer=o.DomUtil.create(\"div\",i+\"control-container\",this._container);t(\"top\",\"left\"),t(\"top\",\"right\"),t(\"bottom\",\"left\"),t(\"bottom\",\"right\")},_clearControlPos:function(){o.DomUtil.remove(this._controlContainer)}}),o.Control.Zoom=o.Control.extend({options:{position:\"topleft\",zoomInText:\"+\",zoomInTitle:\"Zoom in\",zoomOutText:\"-\",zoomOutTitle:\"Zoom out\"},onAdd:function(t){var e=\"leaflet-control-zoom\",i=o.DomUtil.create(\"div\",e+\" leaflet-bar\"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+\"-in\",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+\"-out\",i,this._zoomOut),this._updateDisabled(),t.on(\"zoomend zoomlevelschange\",this._updateDisabled,this),i},onRemove:function(t){t.off(\"zoomend zoomlevelschange\",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoom<this._map.getMaxZoom()&&this._map.zoomIn(this._map.options.zoomDelta*(t.shiftKey?3:1))},_zoomOut:function(t){!this._disabled&&this._map._zoom>this._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,i,n,s){var r=o.DomUtil.create(\"a\",i,n);return r.innerHTML=t,r.href=\"#\",r.title=e,o.DomEvent.on(r,\"mousedown dblclick\",o.DomEvent.stopPropagation).on(r,\"click\",o.DomEvent.stop).on(r,\"click\",s,this).on(r,\"click\",this._refocusOnMap,this),r},_updateDisabled:function(){var t=this._map,e=\"leaflet-disabled\";o.DomUtil.removeClass(this._zoomInButton,e),o.DomUtil.removeClass(this._zoomOutButton,e),(this._disabled||t._zoom===t.getMinZoom())&&o.DomUtil.addClass(this._zoomOutButton,e),(this._disabled||t._zoom===t.getMaxZoom())&&o.DomUtil.addClass(this._zoomInButton,e)}}),o.Map.mergeOptions({zoomControl:!0}),o.Map.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new o.Control.Zoom,this.addControl(this.zoomControl))}),o.control.zoom=function(t){return new o.Control.Zoom(t)},o.Control.Attribution=o.Control.extend({options:{position:\"bottomright\",prefix:'<a href=\"http://leafletjs.com\" title=\"A JS library for interactive maps\">Leaflet</a>'},initialize:function(t){o.setOptions(this,t),this._attributions={}},onAdd:function(t){t.attributionControl=this,this._container=o.DomUtil.create(\"div\",\"leaflet-control-attribution\"),o.DomEvent&&o.DomEvent.disableClickPropagation(this._container);for(var e in t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());\r\nreturn this._update(),this._container},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):this},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):this},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var i=[];this.options.prefix&&i.push(this.options.prefix),t.length&&i.push(t.join(\", \")),this._container.innerHTML=i.join(\" | \")}}}),o.Map.mergeOptions({attributionControl:!0}),o.Map.addInitHook(function(){this.options.attributionControl&&(new o.Control.Attribution).addTo(this)}),o.control.attribution=function(t){return new o.Control.Attribution(t)},o.Control.Scale=o.Control.extend({options:{position:\"bottomleft\",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e=\"leaflet-control-scale\",i=o.DomUtil.create(\"div\",e),n=this.options;return this._addScales(n,e+\"-line\",i),t.on(n.updateWhenIdle?\"moveend\":\"move\",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?\"moveend\":\"move\",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=o.DomUtil.create(\"div\",e,i)),t.imperial&&(this._iScale=o.DomUtil.create(\"div\",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,i=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(i)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t),i=e<1e3?e+\" m\":e/1e3+\" km\";this._updateScale(this._mScale,i,e/t)},_updateImperial:function(t){var e,i,n,o=3.2808399*t;o>5280?(e=o/5280,i=this._getRoundNum(e),this._updateScale(this._iScale,i+\" mi\",i/e)):(n=this._getRoundNum(o),this._updateScale(this._iScale,n+\" ft\",n/o))},_updateScale:function(t,e,i){t.style.width=Math.round(this.options.maxWidth*i)+\"px\",t.innerHTML=e},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+\"\").length-1),i=t/e;return i=i>=10?10:i>=5?5:i>=3?3:i>=2?2:1,e*i}}),o.control.scale=function(t){return new o.Control.Scale(t)},o.Control.Layers=o.Control.extend({options:{collapsed:!0,position:\"topright\",autoZIndex:!0,hideSingleBase:!1},initialize:function(t,e,i){o.setOptions(this,i),this._layers=[],this._lastZIndex=0,this._handlingClick=!1;for(var n in t)this._addLayer(t[n],n);for(n in e)this._addLayer(e[n],n,!0)},onAdd:function(t){return this._initLayout(),this._update(),this._map=t,t.on(\"zoomend\",this._checkDisabledLayers,this),this._container},onRemove:function(){this._map.off(\"zoomend\",this._checkDisabledLayers,this);for(var t=0;t<this._layers.length;t++)this._layers[t].layer.off(\"add remove\",this._onLayerChange,this)},addBaseLayer:function(t,e){return this._addLayer(t,e),this._map?this._update():this},addOverlay:function(t,e){return this._addLayer(t,e,!0),this._map?this._update():this},removeLayer:function(t){t.off(\"add remove\",this._onLayerChange,this);var e=this._getLayer(o.stamp(t));return e&&this._layers.splice(this._layers.indexOf(e),1),this._map?this._update():this},expand:function(){o.DomUtil.addClass(this._container,\"leaflet-control-layers-expanded\"),this._form.style.height=null;var t=this._map.getSize().y-(this._container.offsetTop+50);return t<this._form.clientHeight?(o.DomUtil.addClass(this._form,\"leaflet-control-layers-scrollbar\"),this._form.style.height=t+\"px\"):o.DomUtil.removeClass(this._form,\"leaflet-control-layers-scrollbar\"),this._checkDisabledLayers(),this},collapse:function(){return o.DomUtil.removeClass(this._container,\"leaflet-control-layers-expanded\"),this},_initLayout:function(){var t=\"leaflet-control-layers\",e=this._container=o.DomUtil.create(\"div\",t);e.setAttribute(\"aria-haspopup\",!0),o.DomEvent.disableClickPropagation(e),o.Browser.touch||o.DomEvent.disableScrollPropagation(e);var i=this._form=o.DomUtil.create(\"form\",t+\"-list\");if(this.options.collapsed){o.Browser.android||o.DomEvent.on(e,{mouseenter:this.expand,mouseleave:this.collapse},this);var n=this._layersLink=o.DomUtil.create(\"a\",t+\"-toggle\",e);n.href=\"#\",n.title=\"Layers\",o.Browser.touch?o.DomEvent.on(n,\"click\",o.DomEvent.stop).on(n,\"click\",this.expand,this):o.DomEvent.on(n,\"focus\",this.expand,this),o.DomEvent.on(i,\"click\",function(){setTimeout(o.bind(this._onInputClick,this),0)},this),this._map.on(\"click\",this.collapse,this)}else this.expand();this._baseLayersList=o.DomUtil.create(\"div\",t+\"-base\",i),this._separator=o.DomUtil.create(\"div\",t+\"-separator\",i),this._overlaysList=o.DomUtil.create(\"div\",t+\"-overlays\",i),e.appendChild(i)},_getLayer:function(t){for(var e=0;e<this._layers.length;e++)if(this._layers[e]&&o.stamp(this._layers[e].layer)===t)return this._layers[e]},_addLayer:function(t,e,i){t.on(\"add remove\",this._onLayerChange,this),this._layers.push({layer:t,name:e,overlay:i}),this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex))},_update:function(){if(!this._container)return this;o.DomUtil.empty(this._baseLayersList),o.DomUtil.empty(this._overlaysList);var t,e,i,n,s=0;for(i=0;i<this._layers.length;i++)n=this._layers[i],this._addItem(n),e=e||n.overlay,t=t||!n.overlay,s+=n.overlay?0:1;return this.options.hideSingleBase&&(t=t&&s>1,this._baseLayersList.style.display=t?\"\":\"none\"),this._separator.style.display=e&&t?\"\":\"none\",this},_onLayerChange:function(t){this._handlingClick||this._update();var e=this._getLayer(o.stamp(t.target)),i=e.overlay?\"add\"===t.type?\"overlayadd\":\"overlayremove\":\"add\"===t.type?\"baselayerchange\":null;i&&this._map.fire(i,e)},_createRadioElement:function(t,i){var n='<input type=\"radio\" class=\"leaflet-control-layers-selector\" name=\"'+t+'\"'+(i?' checked=\"checked\"':\"\")+\"/>\",o=e.createElement(\"div\");return o.innerHTML=n,o.firstChild},_addItem:function(t){var i,n=e.createElement(\"label\"),s=this._map.hasLayer(t.layer);t.overlay?(i=e.createElement(\"input\"),i.type=\"checkbox\",i.className=\"leaflet-control-layers-selector\",i.defaultChecked=s):i=this._createRadioElement(\"leaflet-base-layers\",s),i.layerId=o.stamp(t.layer),o.DomEvent.on(i,\"click\",this._onInputClick,this);var r=e.createElement(\"span\");r.innerHTML=\" \"+t.name;var a=e.createElement(\"div\");n.appendChild(a),a.appendChild(i),a.appendChild(r);var h=t.overlay?this._overlaysList:this._baseLayersList;return h.appendChild(n),this._checkDisabledLayers(),n},_onInputClick:function(){var t,e,i,n=this._form.getElementsByTagName(\"input\"),o=[],s=[];this._handlingClick=!0;for(var r=n.length-1;r>=0;r--)t=n[r],e=this._getLayer(t.layerId).layer,i=this._map.hasLayer(e),t.checked&&!i?o.push(e):!t.checked&&i&&s.push(e);for(r=0;r<s.length;r++)this._map.removeLayer(s[r]);for(r=0;r<o.length;r++)this._map.addLayer(o[r]);this._handlingClick=!1,this._refocusOnMap()},_checkDisabledLayers:function(){for(var t,e,n=this._form.getElementsByTagName(\"input\"),o=this._map.getZoom(),s=n.length-1;s>=0;s--)t=n[s],e=this._getLayer(t.layerId).layer,t.disabled=e.options.minZoom!==i&&o<e.options.minZoom||e.options.maxZoom!==i&&o>e.options.maxZoom},_expand:function(){return this.expand()},_collapse:function(){return this.collapse()}}),o.control.layers=function(t,e,i){return new o.Control.Layers(t,e,i)},o.PosAnimation=o.Evented.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=o.DomUtil.getPosition(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire(\"start\"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=o.Util.requestAnimFrame(this._animate,this),this._step()},_step:function(t){var e=+new Date-this._startTime,i=1e3*this._duration;e<i?this._runFrame(this._easeOut(e/i),t):(this._runFrame(1),this._complete())},_runFrame:function(t,e){var i=this._startPos.add(this._offset.multiplyBy(t));e&&i._round(),o.DomUtil.setPosition(this._el,i),this.fire(\"step\")},_complete:function(){o.Util.cancelAnimFrame(this._animId),this._inProgress=!1,this.fire(\"end\")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),o.Map.include({setView:function(t,e,n){if(e=e===i?this._zoom:this._limitZoom(e),t=this._limitCenter(o.latLng(t),e,this.options.maxBounds),n=n||{},this._stop(),this._loaded&&!n.reset&&n!==!0){n.animate!==i&&(n.zoom=o.extend({animate:n.animate},n.zoom),n.pan=o.extend({animate:n.animate,duration:n.duration},n.pan));var s=this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,n.zoom):this._tryAnimatedPan(t,n.pan);if(s)return clearTimeout(this._sizeTimer),this}return this._resetView(t,e),this},panBy:function(t,e){if(t=o.point(t).round(),e=e||{},!t.x&&!t.y)return this.fire(\"moveend\");if(e.animate!==!0&&!this.getSize().contains(t))return this._resetView(this.unproject(this.project(this.getCenter()).add(t)),this.getZoom()),this;if(this._panAnim||(this._panAnim=new o.PosAnimation,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),e.noMoveStart||this.fire(\"movestart\"),e.animate!==!1){o.DomUtil.addClass(this._mapPane,\"leaflet-pan-anim\");var i=this._getMapPanePos().subtract(t).round();this._panAnim.run(this._mapPane,i,e.duration||.25,e.easeLinearity)}else this._rawPanBy(t),this.fire(\"move\").fire(\"moveend\");return this},_onPanTransitionStep:function(){this.fire(\"move\")},_onPanTransitionEnd:function(){o.DomUtil.removeClass(this._mapPane,\"leaflet-pan-anim\"),this.fire(\"moveend\")},_tryAnimatedPan:function(t,e){var i=this._getCenterOffset(t)._floor();return!((e&&e.animate)!==!0&&!this.getSize().contains(i))&&(this.panBy(i,e),!0)}}),o.Map.mergeOptions({zoomAnimation:!0,zoomAnimationThreshold:4});var h=o.DomUtil.TRANSITION&&o.Browser.any3d&&!o.Browser.mobileOpera;h&&o.Map.addInitHook(function(){this._zoomAnimated=this.options.zoomAnimation,this._zoomAnimated&&(this._createAnimProxy(),o.DomEvent.on(this._proxy,o.DomUtil.TRANSITION_END,this._catchTransitionEnd,this))}),o.Map.include(h?{_createAnimProxy:function(){var t=this._proxy=o.DomUtil.create(\"div\",\"leaflet-proxy leaflet-zoom-animated\");this._panes.mapPane.appendChild(t),this.on(\"zoomanim\",function(e){var i=o.DomUtil.TRANSFORM,n=t.style[i];o.DomUtil.setTransform(t,this.project(e.center,e.zoom),this.getZoomScale(e.zoom,1)),n===t.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on(\"load moveend\",function(){var e=this.getCenter(),i=this.getZoom();o.DomUtil.setTransform(t,this.project(e,i),this.getZoomScale(i,1))},this)},_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf(\"transform\")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName(\"leaflet-zoom-animated\").length},_tryAnimatedZoom:function(t,e,i){if(this._animatingZoom)return!0;if(i=i||{},!this._zoomAnimated||i.animate===!1||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),s=this._getCenterOffset(t)._divideBy(1-1/n);return!(i.animate!==!0&&!this.getSize().contains(s))&&(o.Util.requestAnimFrame(function(){this._moveStart(!0)._animateZoom(t,e,!0)},this),!0)},_animateZoom:function(t,e,i,n){i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,o.DomUtil.addClass(this._mapPane,\"leaflet-zoom-anim\")),this.fire(\"zoomanim\",{center:t,zoom:e,noUpdate:n}),setTimeout(o.bind(this._onZoomTransitionEnd,this),250)},_onZoomTransitionEnd:function(){this._animatingZoom&&(o.DomUtil.removeClass(this._mapPane,\"leaflet-zoom-anim\"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom),o.Util.requestAnimFrame(function(){this._moveEnd(!0)},this))}}:{}),o.Map.include({flyTo:function(t,e,n){function s(t){var e=t?-1:1,i=t?v:g,n=v*v-g*g+e*L*L*y*y,o=2*i*L*y,s=n/o,r=Math.sqrt(s*s+1)-s,a=r<1e-9?-18:Math.log(r);return a}function r(t){return(Math.exp(t)-Math.exp(-t))/2}function a(t){return(Math.exp(t)+Math.exp(-t))/2}function h(t){return r(t)/a(t)}function l(t){return g*(a(x)/a(x+P*t))}function u(t){return g*(a(x)*h(x+P*t)-r(x))/L}function c(t){return 1-Math.pow(1-t,1.5)}function d(){var i=(Date.now()-b)/T,n=c(i)*w;i<=1?(this._flyToFrame=o.Util.requestAnimFrame(d,this),this._move(this.unproject(_.add(m.subtract(_).multiplyBy(u(n)/y)),f),this.getScaleZoom(g/l(n),f),{flyTo:!0})):this._move(t,e)._moveEnd(!0)}if(n=n||{},n.animate===!1||!o.Browser.any3d)return this.setView(t,e,n);this._stop();var _=this.project(this.getCenter()),m=this.project(t),p=this.getSize(),f=this._zoom;t=o.latLng(t),e=e===i?f:e;var g=Math.max(p.x,p.y),v=g*this.getZoomScale(f,e),y=m.distanceTo(_)||1,P=1.42,L=P*P,x=s(0),b=Date.now(),w=(s(1)-x)/P,T=n.duration?1e3*n.duration:1e3*w*.8;return this._moveStart(!0),d.call(this),this},flyToBounds:function(t,e){var i=this._getBoundsCenterZoom(t,e);return this.flyTo(i.center,i.zoom,e)}}),o.Map.include({_defaultLocateOptions:{timeout:1e4,watch:!1},locate:function(t){if(t=this._locateOptions=o.extend({},this._defaultLocateOptions,t),!(\"geolocation\"in navigator))return this._handleGeolocationError({code:0,message:\"Geolocation not supported.\"}),this;var e=o.bind(this._handleGeolocationResponse,this),i=o.bind(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e=t.code,i=t.message||(1===e?\"permission denied\":2===e?\"position unavailable\":\"timeout\");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire(\"locationerror\",{code:e,message:\"Geolocation error: \"+i+\".\"})},_handleGeolocationResponse:function(t){var e=t.coords.latitude,i=t.coords.longitude,n=new o.LatLng(e,i),s=n.toBounds(t.coords.accuracy),r=this._locateOptions;if(r.setView){var a=this.getBoundsZoom(s);this.setView(n,r.maxZoom?Math.min(a,r.maxZoom):a)}var h={latlng:n,bounds:s,timestamp:t.timestamp};for(var l in t.coords)\"number\"==typeof t.coords[l]&&(h[l]=t.coords[l]);this.fire(\"locationfound\",h)}})}(window,document);\r\n}\nexports.L = L;\n",
"type": "application/javascript",
"title": "$:/plugins/sycom/leaflet/lib/leaflet.js",
"module-type": "library"
},
"$:/plugins/sycom/leaflet/lib/leaflet-markercluster.js": {
"text": "if($tw.browser){\n/*\r\n Leaflet.markercluster, Provides Beautiful Animated Marker Clustering functionality for Leaflet, a JS library for interactive maps.\r\n https://github.com/Leaflet/Leaflet.markercluster\r\n (c) 2012-2013, Dave Leaver, smartrak\r\n*/\r\n!function(e,t,i){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,removeOutsideVisibleBounds:!0,animate:!0,animateAddingMarkers:!1,spiderfyDistanceMultiplier:1,spiderLegPolylineOptions:{weight:1.5,color:\"#222\",opacity:.5},chunkedLoading:!1,chunkInterval:200,chunkDelay:50,chunkProgress:null,polygonOptions:{}},initialize:function(e){L.Util.setOptions(this,e),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),this._featureGroup=L.featureGroup(),this._featureGroup.addEventParent(this),this._nonPointGroup=L.featureGroup(),this._nonPointGroup.addEventParent(this),this._inZoomAnimation=0,this._needsClustering=[],this._needsRemoving=[],this._currentShownBounds=null,this._queue=[];var t=L.DomUtil.TRANSITION&&this.options.animate;L.extend(this,t?this._withAnimation:this._noAnimation),this._markerCluster=t?L.MarkerCluster:L.MarkerClusterNonAnimated},addLayer:function(e){if(e instanceof L.LayerGroup)return this.addLayers([e]);if(!e.getLatLng)return this._nonPointGroup.addLayer(e),this;if(!this._map)return this._needsClustering.push(e),this;if(this.hasLayer(e))return this;this._unspiderfy&&this._unspiderfy(),this._addLayer(e,this._maxZoom),this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons();var t=e,i=this._zoom;if(e.__parent)for(;t.__parent._zoom>=i;)t=t.__parent;return this._currentShownBounds.contains(t.getLatLng())&&(this.options.animateAddingMarkers?this._animationAddLayer(e,t):this._animationAddLayerNonAnimated(e,t)),this},removeLayer:function(e){return e instanceof L.LayerGroup?this.removeLayers([e]):e.getLatLng?this._map?e.__parent?(this._unspiderfy&&(this._unspiderfy(),this._unspiderfyLayer(e)),this._removeLayer(e,!0),this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),e.off(\"move\",this._childMarkerMoved,this),this._featureGroup.hasLayer(e)&&(this._featureGroup.removeLayer(e),e.clusterShow&&e.clusterShow()),this):this:(!this._arraySplice(this._needsClustering,e)&&this.hasLayer(e)&&this._needsRemoving.push(e),this):(this._nonPointGroup.removeLayer(e),this)},addLayers:function(e){if(!L.Util.isArray(e))return this.addLayer(e);var t,i=this._featureGroup,n=this._nonPointGroup,s=this.options.chunkedLoading,r=this.options.chunkInterval,o=this.options.chunkProgress,a=e.length,h=0,u=!0;if(this._map){var l=(new Date).getTime(),_=L.bind(function(){for(var d=(new Date).getTime();a>h;h++){if(s&&0===h%200){var c=(new Date).getTime()-d;if(c>r)break}if(t=e[h],t instanceof L.LayerGroup)u&&(e=e.slice(),u=!1),this._extractNonGroupLayers(t,e),a=e.length;else if(t.getLatLng){if(!this.hasLayer(t)&&(this._addLayer(t,this._maxZoom),t.__parent&&2===t.__parent.getChildCount())){var p=t.__parent.getAllChildMarkers(),f=p[0]===t?p[1]:p[0];i.removeLayer(f)}}else n.addLayer(t)}o&&o(h,a,(new Date).getTime()-l),h===a?(this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds)):setTimeout(_,this.options.chunkDelay)},this);_()}else for(var d=this._needsClustering;a>h;h++)t=e[h],t instanceof L.LayerGroup?(u&&(e=e.slice(),u=!1),this._extractNonGroupLayers(t,e),a=e.length):t.getLatLng?this.hasLayer(t)||d.push(t):n.addLayer(t);return this},removeLayers:function(e){var t,i,n=e.length,s=this._featureGroup,r=this._nonPointGroup,o=!0;if(!this._map){for(t=0;n>t;t++)i=e[t],i instanceof L.LayerGroup?(o&&(e=e.slice(),o=!1),this._extractNonGroupLayers(i,e),n=e.length):(this._arraySplice(this._needsClustering,i),r.removeLayer(i),this.hasLayer(i)&&this._needsRemoving.push(i));return this}if(this._unspiderfy){this._unspiderfy();var a=e.slice(),h=n;for(t=0;h>t;t++)i=a[t],i instanceof L.LayerGroup?(this._extractNonGroupLayers(i,a),h=a.length):this._unspiderfyLayer(i)}for(t=0;n>t;t++)i=e[t],i instanceof L.LayerGroup?(o&&(e=e.slice(),o=!1),this._extractNonGroupLayers(i,e),n=e.length):i.__parent?(this._removeLayer(i,!0,!0),s.hasLayer(i)&&(s.removeLayer(i),i.clusterShow&&i.clusterShow())):r.removeLayer(i);return this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds),this},clearLayers:function(){return this._map||(this._needsClustering=[],delete this._gridClusters,delete this._gridUnclustered),this._noanimationUnspiderfy&&this._noanimationUnspiderfy(),this._featureGroup.clearLayers(),this._nonPointGroup.clearLayers(),this.eachLayer(function(e){e.off(\"move\",this._childMarkerMoved,this),delete e.__parent}),this._map&&this._generateInitialClusters(),this},getBounds:function(){var e=new L.LatLngBounds;this._topClusterLevel&&e.extend(this._topClusterLevel._bounds);for(var t=this._needsClustering.length-1;t>=0;t--)e.extend(this._needsClustering[t].getLatLng());return e.extend(this._nonPointGroup.getBounds()),e},eachLayer:function(e,t){var i,n=this._needsClustering.slice(),s=this._needsRemoving;for(this._topClusterLevel&&this._topClusterLevel.getAllChildMarkers(n),i=n.length-1;i>=0;i--)-1===s.indexOf(n[i])&&e.call(t,n[i]);this._nonPointGroup.eachLayer(e,t)},getLayers:function(){var e=[];return this.eachLayer(function(t){e.push(t)}),e},getLayer:function(e){var t=null;return e=parseInt(e,10),this.eachLayer(function(i){L.stamp(i)===e&&(t=i)}),t},hasLayer:function(e){if(!e)return!1;var t,i=this._needsClustering;for(t=i.length-1;t>=0;t--)if(i[t]===e)return!0;for(i=this._needsRemoving,t=i.length-1;t>=0;t--)if(i[t]===e)return!1;return!(!e.__parent||e.__parent._group!==this)||this._nonPointGroup.hasLayer(e)},zoomToShowLayer:function(e,t){\"function\"!=typeof t&&(t=function(){});var i=function(){!e._icon&&!e.__parent._icon||this._inZoomAnimation||(this._map.off(\"moveend\",i,this),this.off(\"animationend\",i,this),e._icon?t():e.__parent._icon&&(this.once(\"spiderfied\",t,this),e.__parent.spiderfy()))};if(e._icon&&this._map.getBounds().contains(e.getLatLng()))t();else if(e.__parent._zoom<Math.round(this._map._zoom))this._map.on(\"moveend\",i,this),this._map.panTo(e.getLatLng());else{var n=function(){this._map.off(\"movestart\",n,this),n=null};this._map.on(\"movestart\",n,this),this._map.on(\"moveend\",i,this),this.on(\"animationend\",i,this),e.__parent.zoomToBounds(),n&&i.call(this)}},onAdd:function(e){this._map=e;var t,i,n;if(!isFinite(this._map.getMaxZoom()))throw\"Map has no maxZoom specified\";for(this._featureGroup.addTo(e),this._nonPointGroup.addTo(e),this._gridClusters||this._generateInitialClusters(),this._maxLat=e.options.crs.projection.MAX_LATITUDE,t=0,i=this._needsRemoving.length;i>t;t++)n=this._needsRemoving[t],this._removeLayer(n,!0);this._needsRemoving=[],this._zoom=Math.round(this._map._zoom),this._currentShownBounds=this._getExpandedVisibleBounds(),this._map.on(\"zoomend\",this._zoomEnd,this),this._map.on(\"moveend\",this._moveEnd,this),this._spiderfierOnAdd&&this._spiderfierOnAdd(),this._bindEvents(),i=this._needsClustering,this._needsClustering=[],this.addLayers(i)},onRemove:function(e){e.off(\"zoomend\",this._zoomEnd,this),e.off(\"moveend\",this._moveEnd,this),this._unbindEvents(),this._map._mapPane.className=this._map._mapPane.className.replace(\" leaflet-cluster-anim\",\"\"),this._spiderfierOnRemove&&this._spiderfierOnRemove(),delete this._maxLat,this._hideCoverage(),this._featureGroup.remove(),this._nonPointGroup.remove(),this._featureGroup.clearLayers(),this._map=null},getVisibleParent:function(e){for(var t=e;t&&!t._icon;)t=t.__parent;return t||null},_arraySplice:function(e,t){for(var i=e.length-1;i>=0;i--)if(e[i]===t)return e.splice(i,1),!0},_removeFromGridUnclustered:function(e,t){for(var i=this._map,n=this._gridUnclustered;t>=0&&n[t].removeObject(e,i.project(e.getLatLng(),t));t--);},_childMarkerMoved:function(e){this._ignoreMove||(e.target._latlng=e.oldLatLng,this.removeLayer(e.target),e.target._latlng=e.latlng,this.addLayer(e.target))},_removeLayer:function(e,t,i){var n=this._gridClusters,s=this._gridUnclustered,r=this._featureGroup,o=this._map;t&&this._removeFromGridUnclustered(e,this._maxZoom);var a,h=e.__parent,u=h._markers;for(this._arraySplice(u,e);h&&(h._childCount--,h._boundsNeedUpdate=!0,!(h._zoom<0));)t&&h._childCount<=1?(a=h._markers[0]===e?h._markers[1]:h._markers[0],n[h._zoom].removeObject(h,o.project(h._cLatLng,h._zoom)),s[h._zoom].addObject(a,o.project(a.getLatLng(),h._zoom)),this._arraySplice(h.__parent._childClusters,h),h.__parent._markers.push(a),a.__parent=h.__parent,h._icon&&(r.removeLayer(h),i||r.addLayer(a))):h._iconNeedsUpdate=!0,h=h.__parent;delete e.__parent},_isOrIsParent:function(e,t){for(;t;){if(e===t)return!0;t=t.parentNode}return!1},fire:function(e,t,i){if(t&&t.layer instanceof L.MarkerCluster){if(t.originalEvent&&this._isOrIsParent(t.layer._icon,t.originalEvent.relatedTarget))return;e=\"cluster\"+e}L.FeatureGroup.prototype.fire.call(this,e,t,i)},listens:function(e,t){return L.FeatureGroup.prototype.listens.call(this,e,t)||L.FeatureGroup.prototype.listens.call(this,\"cluster\"+e,t)},_defaultIconCreateFunction:function(e){var t=e.getChildCount(),i=\" marker-cluster-\";return i+=10>t?\"small\":100>t?\"medium\":\"large\",new L.DivIcon({html:\"<div><span>\"+t+\"</span></div>\",className:\"marker-cluster\"+i,iconSize:new L.Point(40,40)})},_bindEvents:function(){var e=this._map,t=this.options.spiderfyOnMaxZoom,i=this.options.showCoverageOnHover,n=this.options.zoomToBoundsOnClick;(t||n)&&this.on(\"clusterclick\",this._zoomOrSpiderfy,this),i&&(this.on(\"clustermouseover\",this._showCoverage,this),this.on(\"clustermouseout\",this._hideCoverage,this),e.on(\"zoomend\",this._hideCoverage,this))},_zoomOrSpiderfy:function(e){for(var t=e.layer,i=t;1===i._childClusters.length;)i=i._childClusters[0];i._zoom===this._maxZoom&&i._childCount===t._childCount&&this.options.spiderfyOnMaxZoom?t.spiderfy():this.options.zoomToBoundsOnClick&&t.zoomToBounds(),e.originalEvent&&13===e.originalEvent.keyCode&&this._map._container.focus()},_showCoverage:function(e){var t=this._map;this._inZoomAnimation||(this._shownPolygon&&t.removeLayer(this._shownPolygon),e.layer.getChildCount()>2&&e.layer!==this._spiderfied&&(this._shownPolygon=new L.Polygon(e.layer.getConvexHull(),this.options.polygonOptions),t.addLayer(this._shownPolygon)))},_hideCoverage:function(){this._shownPolygon&&(this._map.removeLayer(this._shownPolygon),this._shownPolygon=null)},_unbindEvents:function(){var e=this.options.spiderfyOnMaxZoom,t=this.options.showCoverageOnHover,i=this.options.zoomToBoundsOnClick,n=this._map;(e||i)&&this.off(\"clusterclick\",this._zoomOrSpiderfy,this),t&&(this.off(\"clustermouseover\",this._showCoverage,this),this.off(\"clustermouseout\",this._hideCoverage,this),n.off(\"zoomend\",this._hideCoverage,this))},_zoomEnd:function(){this._map&&(this._mergeSplitClusters(),this._zoom=Math.round(this._map._zoom),this._currentShownBounds=this._getExpandedVisibleBounds())},_moveEnd:function(){if(!this._inZoomAnimation){var e=this._getExpandedVisibleBounds();this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,this._zoom,e),this._topClusterLevel._recursivelyAddChildrenToMap(null,Math.round(this._map._zoom),e),this._currentShownBounds=e}},_generateInitialClusters:function(){var e=this._map.getMaxZoom(),t=this.options.maxClusterRadius,i=t;\"function\"!=typeof t&&(i=function(){return t}),this.options.disableClusteringAtZoom&&(e=this.options.disableClusteringAtZoom-1),this._maxZoom=e,this._gridClusters={},this._gridUnclustered={};for(var n=e;n>=0;n--)this._gridClusters[n]=new L.DistanceGrid(i(n)),this._gridUnclustered[n]=new L.DistanceGrid(i(n));this._topClusterLevel=new this._markerCluster(this,-1)},_addLayer:function(e,t){var i,n,s=this._gridClusters,r=this._gridUnclustered;for(this.options.singleMarkerMode&&this._overrideMarkerIcon(e),e.on(\"move\",this._childMarkerMoved,this);t>=0;t--){i=this._map.project(e.getLatLng(),t);var o=s[t].getNearObject(i);if(o)return o._addChild(e),e.__parent=o,void 0;if(o=r[t].getNearObject(i)){var a=o.__parent;a&&this._removeLayer(o,!1);var h=new this._markerCluster(this,t,o,e);s[t].addObject(h,this._map.project(h._cLatLng,t)),o.__parent=h,e.__parent=h;var u=h;for(n=t-1;n>a._zoom;n--)u=new this._markerCluster(this,n,u),s[n].addObject(u,this._map.project(o.getLatLng(),n));return a._addChild(u),this._removeFromGridUnclustered(o,t),void 0}r[t].addObject(e,i)}this._topClusterLevel._addChild(e),e.__parent=this._topClusterLevel},_refreshClustersIcons:function(){this._featureGroup.eachLayer(function(e){e instanceof L.MarkerCluster&&e._iconNeedsUpdate&&e._updateIcon()})},_enqueue:function(e){this._queue.push(e),this._queueTimeout||(this._queueTimeout=setTimeout(L.bind(this._processQueue,this),300))},_processQueue:function(){for(var e=0;e<this._queue.length;e++)this._queue[e].call(this);this._queue.length=0,clearTimeout(this._queueTimeout),this._queueTimeout=null},_mergeSplitClusters:function(){var e=Math.round(this._map._zoom);this._processQueue(),this._zoom<e&&this._currentShownBounds.intersects(this._getExpandedVisibleBounds())?(this._animationStart(),this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,this._zoom,this._getExpandedVisibleBounds()),this._animationZoomIn(this._zoom,e)):this._zoom>e?(this._animationStart(),this._animationZoomOut(this._zoom,e)):this._moveEnd()},_getExpandedVisibleBounds:function(){return this.options.removeOutsideVisibleBounds?L.Browser.mobile?this._checkBoundsMaxLat(this._map.getBounds()):this._checkBoundsMaxLat(this._map.getBounds().pad(1)):this._mapBoundsInfinite},_checkBoundsMaxLat:function(e){var t=this._maxLat;return t!==i&&(e.getNorth()>=t&&(e._northEast.lat=1/0),e.getSouth()<=-t&&(e._southWest.lat=-1/0)),e},_animationAddLayerNonAnimated:function(e,t){if(t===e)this._featureGroup.addLayer(e);else if(2===t._childCount){t._addToMap();var i=t.getAllChildMarkers();this._featureGroup.removeLayer(i[0]),this._featureGroup.removeLayer(i[1])}else t._updateIcon()},_extractNonGroupLayers:function(e,t){var i,n=e.getLayers(),s=0;for(t=t||[];s<n.length;s++)i=n[s],i instanceof L.LayerGroup?this._extractNonGroupLayers(i,t):t.push(i);return t},_overrideMarkerIcon:function(e){var t=e.options.icon=this.options.iconCreateFunction({getChildCount:function(){return 1},getAllChildMarkers:function(){return[e]}});return t}}),L.MarkerClusterGroup.include({_mapBoundsInfinite:new L.LatLngBounds(new L.LatLng(-1/0,-1/0),new L.LatLng(1/0,1/0))}),L.MarkerClusterGroup.include({_noAnimation:{_animationStart:function(){},_animationZoomIn:function(e,t){this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,e),this._topClusterLevel._recursivelyAddChildrenToMap(null,t,this._getExpandedVisibleBounds()),this.fire(\"animationend\")},_animationZoomOut:function(e,t){this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,e),this._topClusterLevel._recursivelyAddChildrenToMap(null,t,this._getExpandedVisibleBounds()),this.fire(\"animationend\")},_animationAddLayer:function(e,t){this._animationAddLayerNonAnimated(e,t)}},_withAnimation:{_animationStart:function(){this._map._mapPane.className+=\" leaflet-cluster-anim\",this._inZoomAnimation++},_animationZoomIn:function(e,t){var i,n=this._getExpandedVisibleBounds(),s=this._featureGroup;this._ignoreMove=!0,this._topClusterLevel._recursively(n,e,0,function(r){var o,a=r._latlng,h=r._markers;for(n.contains(a)||(a=null),r._isSingleParent()&&e+1===t?(s.removeLayer(r),r._recursivelyAddChildrenToMap(null,t,n)):(r.clusterHide(),r._recursivelyAddChildrenToMap(a,t,n)),i=h.length-1;i>=0;i--)o=h[i],n.contains(o._latlng)||s.removeLayer(o)}),this._forceLayout(),this._topClusterLevel._recursivelyBecomeVisible(n,t),s.eachLayer(function(e){e instanceof L.MarkerCluster||!e._icon||e.clusterShow()}),this._topClusterLevel._recursively(n,e,t,function(e){e._recursivelyRestoreChildPositions(t)}),this._ignoreMove=!1,this._enqueue(function(){this._topClusterLevel._recursively(n,e,0,function(e){s.removeLayer(e),e.clusterShow()}),this._animationEnd()})},_animationZoomOut:function(e,t){this._animationZoomOutSingle(this._topClusterLevel,e-1,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,t,this._getExpandedVisibleBounds()),this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,e,this._getExpandedVisibleBounds())},_animationAddLayer:function(e,t){var i=this,n=this._featureGroup;n.addLayer(e),t!==e&&(t._childCount>2?(t._updateIcon(),this._forceLayout(),this._animationStart(),e._setPos(this._map.latLngToLayerPoint(t.getLatLng())),e.clusterHide(),this._enqueue(function(){n.removeLayer(e),e.clusterShow(),i._animationEnd()})):(this._forceLayout(),i._animationStart(),i._animationZoomOutSingle(t,this._map.getMaxZoom(),this._zoom)))}},_animationZoomOutSingle:function(e,t,i){var n=this._getExpandedVisibleBounds();e._recursivelyAnimateChildrenInAndAddSelfToMap(n,t+1,i);var s=this;this._forceLayout(),e._recursivelyBecomeVisible(n,i),this._enqueue(function(){if(1===e._childCount){var r=e._markers[0];this._ignoreMove=!0,r.setLatLng(r.getLatLng()),this._ignoreMove=!1,r.clusterShow&&r.clusterShow()}else e._recursively(n,i,0,function(e){e._recursivelyRemoveChildrenFromMap(n,t+1)});s._animationEnd()})},_animationEnd:function(){this._map&&(this._map._mapPane.className=this._map._mapPane.className.replace(\" leaflet-cluster-anim\",\"\")),this._inZoomAnimation--,this.fire(\"animationend\")},_forceLayout:function(){L.Util.falseFn(t.body.offsetWidth)}}),L.markerClusterGroup=function(e){return new L.MarkerClusterGroup(e)},L.MarkerCluster=L.Marker.extend({initialize:function(e,t,i,n){L.Marker.prototype.initialize.call(this,i?i._cLatLng||i.getLatLng():new L.LatLng(0,0),{icon:this}),this._group=e,this._zoom=t,this._markers=[],this._childClusters=[],this._childCount=0,this._iconNeedsUpdate=!0,this._boundsNeedUpdate=!0,this._bounds=new L.LatLngBounds,i&&this._addChild(i),n&&this._addChild(n)},getAllChildMarkers:function(e){e=e||[];for(var t=this._childClusters.length-1;t>=0;t--)this._childClusters[t].getAllChildMarkers(e);for(var i=this._markers.length-1;i>=0;i--)e.push(this._markers[i]);return e},getChildCount:function(){return this._childCount},zoomToBounds:function(){for(var e,t=this._childClusters.slice(),i=this._group._map,n=i.getBoundsZoom(this._bounds),s=this._zoom+1,r=i.getZoom();t.length>0&&n>s;){s++;var o=[];for(e=0;e<t.length;e++)o=o.concat(t[e]._childClusters);t=o}n>s?this._group._map.setView(this._latlng,s):r>=n?this._group._map.setView(this._latlng,r+1):this._group._map.fitBounds(this._bounds)},getBounds:function(){var e=new L.LatLngBounds;return e.extend(this._bounds),e},_updateIcon:function(){this._iconNeedsUpdate=!0,this._icon&&this.setIcon(this)},createIcon:function(){return this._iconNeedsUpdate&&(this._iconObj=this._group.options.iconCreateFunction(this),this._iconNeedsUpdate=!1),this._iconObj.createIcon()},createShadow:function(){return this._iconObj.createShadow()},_addChild:function(e,t){this._iconNeedsUpdate=!0,this._boundsNeedUpdate=!0,this._setClusterCenter(e),e instanceof L.MarkerCluster?(t||(this._childClusters.push(e),e.__parent=this),this._childCount+=e._childCount):(t||this._markers.push(e),this._childCount++),this.__parent&&this.__parent._addChild(e,!0)},_setClusterCenter:function(e){this._cLatLng||(this._cLatLng=e._cLatLng||e._latlng)},_resetBounds:function(){var e=this._bounds;e._southWest&&(e._southWest.lat=1/0,e._southWest.lng=1/0),e._northEast&&(e._northEast.lat=-1/0,e._northEast.lng=-1/0)},_recalculateBounds:function(){var e,t,i,n,s=this._markers,r=this._childClusters,o=0,a=0,h=this._childCount;if(0!==h){for(this._resetBounds(),e=0;e<s.length;e++)i=s[e]._latlng,this._bounds.extend(i),o+=i.lat,a+=i.lng;for(e=0;e<r.length;e++)t=r[e],t._boundsNeedUpdate&&t._recalculateBounds(),this._bounds.extend(t._bounds),i=t._wLatLng,n=t._childCount,o+=i.lat*n,a+=i.lng*n;this._latlng=this._wLatLng=new L.LatLng(o/h,a/h),this._boundsNeedUpdate=!1}},_addToMap:function(e){e&&(this._backupLatlng=this._latlng,this.setLatLng(e)),this._group._featureGroup.addLayer(this)},_recursivelyAnimateChildrenIn:function(e,t,i){this._recursively(e,0,i-1,function(e){var i,n,s=e._markers;for(i=s.length-1;i>=0;i--)n=s[i],n._icon&&(n._setPos(t),n.clusterHide())},function(e){var i,n,s=e._childClusters;for(i=s.length-1;i>=0;i--)n=s[i],n._icon&&(n._setPos(t),n.clusterHide())})},_recursivelyAnimateChildrenInAndAddSelfToMap:function(e,t,i){this._recursively(e,i,0,function(n){n._recursivelyAnimateChildrenIn(e,n._group._map.latLngToLayerPoint(n.getLatLng()).round(),t),n._isSingleParent()&&t-1===i?(n.clusterShow(),n._recursivelyRemoveChildrenFromMap(e,t)):n.clusterHide(),n._addToMap()})},_recursivelyBecomeVisible:function(e,t){this._recursively(e,0,t,null,function(e){e.clusterShow()})},_recursivelyAddChildrenToMap:function(e,t,i){this._recursively(i,-1,t,function(n){if(t!==n._zoom)for(var s=n._markers.length-1;s>=0;s--){var r=n._markers[s];i.contains(r._latlng)&&(e&&(r._backupLatlng=r.getLatLng(),r.setLatLng(e),r.clusterHide&&r.clusterHide()),n._group._featureGroup.addLayer(r))}},function(t){t._addToMap(e)})},_recursivelyRestoreChildPositions:function(e){for(var t=this._markers.length-1;t>=0;t--){var i=this._markers[t];i._backupLatlng&&(i.setLatLng(i._backupLatlng),delete i._backupLatlng)}if(e-1===this._zoom)for(var n=this._childClusters.length-1;n>=0;n--)this._childClusters[n]._restorePosition();else for(var s=this._childClusters.length-1;s>=0;s--)this._childClusters[s]._recursivelyRestoreChildPositions(e)},_restorePosition:function(){this._backupLatlng&&(this.setLatLng(this._backupLatlng),delete this._backupLatlng)},_recursivelyRemoveChildrenFromMap:function(e,t,i){var n,s;this._recursively(e,-1,t-1,function(e){for(s=e._markers.length-1;s>=0;s--)n=e._markers[s],i&&i.contains(n._latlng)||(e._group._featureGroup.removeLayer(n),n.clusterShow&&n.clusterShow())},function(e){for(s=e._childClusters.length-1;s>=0;s--)n=e._childClusters[s],i&&i.contains(n._latlng)||(e._group._featureGroup.removeLayer(n),n.clusterShow&&n.clusterShow())})},_recursively:function(e,t,i,n,s){var r,o,a=this._childClusters,h=this._zoom;if(h>=t&&(n&&n(this),s&&h===i&&s(this)),t>h||i>h)for(r=a.length-1;r>=0;r--)o=a[r],e.intersects(o._bounds)&&o._recursively(e,t,i,n,s)},_isSingleParent:function(){return this._childClusters.length>0&&this._childClusters[0]._childCount===this._childCount}}),L.Marker.include({clusterHide:function(){return this.options.opacityWhenUnclustered=this.options.opacity||1,this.setOpacity(0)},clusterShow:function(){var e=this.setOpacity(this.options.opacity||this.options.opacityWhenUnclustered);return delete this.options.opacityWhenUnclustered,e}}),L.DistanceGrid=function(e){this._cellSize=e,this._sqCellSize=e*e,this._grid={},this._objectPoint={}},L.DistanceGrid.prototype={addObject:function(e,t){var i=this._getCoord(t.x),n=this._getCoord(t.y),s=this._grid,r=s[n]=s[n]||{},o=r[i]=r[i]||[],a=L.Util.stamp(e);this._objectPoint[a]=t,o.push(e)},updateObject:function(e,t){this.removeObject(e),this.addObject(e,t)},removeObject:function(e,t){var i,n,s=this._getCoord(t.x),r=this._getCoord(t.y),o=this._grid,a=o[r]=o[r]||{},h=a[s]=a[s]||[];for(delete this._objectPoint[L.Util.stamp(e)],i=0,n=h.length;n>i;i++)if(h[i]===e)return h.splice(i,1),1===n&&delete a[s],!0},eachObject:function(e,t){var i,n,s,r,o,a,h,u=this._grid;for(i in u){o=u[i];for(n in o)for(a=o[n],s=0,r=a.length;r>s;s++)h=e.call(t,a[s]),h&&(s--,r--)}},getNearObject:function(e){var t,i,n,s,r,o,a,h,u=this._getCoord(e.x),l=this._getCoord(e.y),_=this._objectPoint,d=this._sqCellSize,c=null;for(t=l-1;l+1>=t;t++)if(s=this._grid[t])for(i=u-1;u+1>=i;i++)if(r=s[i])for(n=0,o=r.length;o>n;n++)a=r[n],h=this._sqDist(_[L.Util.stamp(a)],e),d>h&&(d=h,c=a);return c},_getCoord:function(e){return Math.floor(e/this._cellSize)},_sqDist:function(e,t){var i=t.x-e.x,n=t.y-e.y;return i*i+n*n}},function(){L.QuickHull={getDistant:function(e,t){var i=t[1].lat-t[0].lat,n=t[0].lng-t[1].lng;return n*(e.lat-t[0].lat)+i*(e.lng-t[0].lng)},findMostDistantPointFromBaseLine:function(e,t){var i,n,s,r=0,o=null,a=[];for(i=t.length-1;i>=0;i--)n=t[i],s=this.getDistant(n,e),s>0&&(a.push(n),s>r&&(r=s,o=n));return{maxPoint:o,newPoints:a}},buildConvexHull:function(e,t){var i=[],n=this.findMostDistantPointFromBaseLine(e,t);return n.maxPoint?(i=i.concat(this.buildConvexHull([e[0],n.maxPoint],n.newPoints)),i=i.concat(this.buildConvexHull([n.maxPoint,e[1]],n.newPoints))):[e[0]]},getConvexHull:function(e){var t,i=!1,n=!1,s=!1,r=!1,o=null,a=null,h=null,u=null,l=null,_=null;for(t=e.length-1;t>=0;t--){var d=e[t];(i===!1||d.lat>i)&&(o=d,i=d.lat),(n===!1||d.lat<n)&&(a=d,n=d.lat),(s===!1||d.lng>s)&&(h=d,s=d.lng),(r===!1||d.lng<r)&&(u=d,r=d.lng)}n!==i?(_=a,l=o):(_=u,l=h);var c=[].concat(this.buildConvexHull([_,l],e),this.buildConvexHull([l,_],e));return c}}}(),L.MarkerCluster.include({getConvexHull:function(){var e,t,i=this.getAllChildMarkers(),n=[];for(t=i.length-1;t>=0;t--)e=i[t].getLatLng(),n.push(e);return L.QuickHull.getConvexHull(n)}}),L.MarkerCluster.include({_2PI:2*Math.PI,_circleFootSeparation:25,_circleStartAngle:Math.PI/6,_spiralFootSeparation:28,_spiralLengthStart:11,_spiralLengthFactor:5,_circleSpiralSwitchover:9,spiderfy:function(){if(this._group._spiderfied!==this&&!this._group._inZoomAnimation){var e,t=this.getAllChildMarkers(),i=this._group,n=i._map,s=n.latLngToLayerPoint(this._latlng);this._group._unspiderfy(),this._group._spiderfied=this,t.length>=this._circleSpiralSwitchover?e=this._generatePointsSpiral(t.length,s):(s.y+=10,e=this._generatePointsCircle(t.length,s)),this._animationSpiderfy(t,e)}},unspiderfy:function(e){this._group._inZoomAnimation||(this._animationUnspiderfy(e),this._group._spiderfied=null)},_generatePointsCircle:function(e,t){var i,n,s=this._group.options.spiderfyDistanceMultiplier*this._circleFootSeparation*(2+e),r=s/this._2PI,o=this._2PI/e,a=[];for(a.length=e,i=e-1;i>=0;i--)n=this._circleStartAngle+i*o,a[i]=new L.Point(t.x+r*Math.cos(n),t.y+r*Math.sin(n))._round();return a},_generatePointsSpiral:function(e,t){var i,n=this._group.options.spiderfyDistanceMultiplier,s=n*this._spiralLengthStart,r=n*this._spiralFootSeparation,o=n*this._spiralLengthFactor*this._2PI,a=0,h=[];for(h.length=e,i=e-1;i>=0;i--)a+=r/s+5e-4*i,h[i]=new L.Point(t.x+s*Math.cos(a),t.y+s*Math.sin(a))._round(),s+=o/a;return h},_noanimationUnspiderfy:function(){var e,t,i=this._group,n=i._map,s=i._featureGroup,r=this.getAllChildMarkers();for(i._ignoreMove=!0,this.setOpacity(1),t=r.length-1;t>=0;t--)e=r[t],s.removeLayer(e),e._preSpiderfyLatlng&&(e.setLatLng(e._preSpiderfyLatlng),delete e._preSpiderfyLatlng),e.setZIndexOffset&&e.setZIndexOffset(0),e._spiderLeg&&(n.removeLayer(e._spiderLeg),delete e._spiderLeg);i.fire(\"unspiderfied\",{cluster:this,markers:r}),i._ignoreMove=!1,i._spiderfied=null}}),L.MarkerClusterNonAnimated=L.MarkerCluster.extend({_animationSpiderfy:function(e,t){var i,n,s,r,o=this._group,a=o._map,h=o._featureGroup,u=this._group.options.spiderLegPolylineOptions;for(o._ignoreMove=!0,i=0;i<e.length;i++)r=a.layerPointToLatLng(t[i]),n=e[i],s=new L.Polyline([this._latlng,r],u),a.addLayer(s),n._spiderLeg=s,n._preSpiderfyLatlng=n._latlng,n.setLatLng(r),n.setZIndexOffset&&n.setZIndexOffset(1e6),h.addLayer(n);this.setOpacity(.3),o._ignoreMove=!1,o.fire(\"spiderfied\",{cluster:this,markers:e})},_animationUnspiderfy:function(){this._noanimationUnspiderfy()}}),L.MarkerCluster.include({_animationSpiderfy:function(e,t){var n,s,r,o,a,h,u=this,l=this._group,_=l._map,d=l._featureGroup,c=this._latlng,p=_.latLngToLayerPoint(c),f=L.Path.SVG,m=L.extend({},this._group.options.spiderLegPolylineOptions),g=m.opacity;for(g===i&&(g=L.MarkerClusterGroup.prototype.options.spiderLegPolylineOptions.opacity),f?(m.opacity=0,m.className=(m.className||\"\")+\" leaflet-cluster-spider-leg\"):m.opacity=g,l._ignoreMove=!0,n=0;n<e.length;n++)s=e[n],h=_.layerPointToLatLng(t[n]),r=new L.Polyline([c,h],m),_.addLayer(r),s._spiderLeg=r,f&&(o=r._path,a=o.getTotalLength()+.1,o.style.strokeDasharray=a,o.style.strokeDashoffset=a),s.setZIndexOffset&&s.setZIndexOffset(1e6),s.clusterHide&&s.clusterHide(),d.addLayer(s),s._setPos&&s._setPos(p);for(l._forceLayout(),l._animationStart(),n=e.length-1;n>=0;n--)h=_.layerPointToLatLng(t[n]),s=e[n],s._preSpiderfyLatlng=s._latlng,s.setLatLng(h),s.clusterShow&&s.clusterShow(),f&&(r=s._spiderLeg,o=r._path,o.style.strokeDashoffset=0,r.setStyle({opacity:g}));this.setOpacity(.3),l._ignoreMove=!1,setTimeout(function(){l._animationEnd(),l.fire(\"spiderfied\",{cluster:u,markers:e})},200)},_animationUnspiderfy:function(e){var t,i,n,s,r,o,a=this,h=this._group,u=h._map,l=h._featureGroup,_=e?u._latLngToNewLayerPoint(this._latlng,e.zoom,e.center):u.latLngToLayerPoint(this._latlng),d=this.getAllChildMarkers(),c=L.Path.SVG;for(h._ignoreMove=!0,h._animationStart(),this.setOpacity(1),i=d.length-1;i>=0;i--)t=d[i],t._preSpiderfyLatlng&&(t.setLatLng(t._preSpiderfyLatlng),delete t._preSpiderfyLatlng,o=!0,t._setPos&&(t._setPos(_),o=!1),t.clusterHide&&(t.clusterHide(),o=!1),o&&l.removeLayer(t),c&&(n=t._spiderLeg,s=n._path,r=s.getTotalLength()+.1,s.style.strokeDashoffset=r,n.setStyle({opacity:0})));h._ignoreMove=!1,setTimeout(function(){var e=0;for(i=d.length-1;i>=0;i--)t=d[i],t._spiderLeg&&e++;for(i=d.length-1;i>=0;i--)t=d[i],t._spiderLeg&&(t.clusterShow&&t.clusterShow(),t.setZIndexOffset&&t.setZIndexOffset(0),e>1&&l.removeLayer(t),u.removeLayer(t._spiderLeg),delete t._spiderLeg);h._animationEnd(),h.fire(\"unspiderfied\",{cluster:a,markers:d})},200)}}),L.MarkerClusterGroup.include({_spiderfied:null,unspiderfy:function(){this._unspiderfy.apply(this,arguments)},_spiderfierOnAdd:function(){this._map.on(\"click\",this._unspiderfyWrapper,this),this._map.options.zoomAnimation&&this._map.on(\"zoomstart\",this._unspiderfyZoomStart,this),this._map.on(\"zoomend\",this._noanimationUnspiderfy,this),L.Browser.touch||this._map.getRenderer(this)},_spiderfierOnRemove:function(){this._map.off(\"click\",this._unspiderfyWrapper,this),this._map.off(\"zoomstart\",this._unspiderfyZoomStart,this),this._map.off(\"zoomanim\",this._unspiderfyZoomAnim,this),this._map.off(\"zoomend\",this._noanimationUnspiderfy,this),this._noanimationUnspiderfy()},_unspiderfyZoomStart:function(){this._map&&this._map.on(\"zoomanim\",this._unspiderfyZoomAnim,this)},_unspiderfyZoomAnim:function(e){L.DomUtil.hasClass(this._map._mapPane,\"leaflet-touching\")||(this._map.off(\"zoomanim\",this._unspiderfyZoomAnim,this),this._unspiderfy(e))},_unspiderfyWrapper:function(){this._unspiderfy()},_unspiderfy:function(e){this._spiderfied&&this._spiderfied.unspiderfy(e)},_noanimationUnspiderfy:function(){this._spiderfied&&this._spiderfied._noanimationUnspiderfy()},_unspiderfyLayer:function(e){e._spiderLeg&&(this._featureGroup.removeLayer(e),e.clusterShow&&e.clusterShow(),e.setZIndexOffset&&e.setZIndexOffset(0),this._map.removeLayer(e._spiderLeg),delete e._spiderLeg)}}),L.MarkerClusterGroup.include({refreshClusters:function(e){return e?e instanceof L.MarkerClusterGroup?e=e._topClusterLevel.getAllChildMarkers():e instanceof L.LayerGroup?e=e._layers:e instanceof L.MarkerCluster?e=e.getAllChildMarkers():e instanceof L.Marker&&(e=[e]):e=this._topClusterLevel.getAllChildMarkers(),this._flagParentsIconsNeedUpdate(e),this._refreshClustersIcons(),this.options.singleMarkerMode&&this._refreshSingleMarkerModeMarkers(e),this},_flagParentsIconsNeedUpdate:function(e){var t,i;for(t in e)for(i=e[t].__parent;i;)i._iconNeedsUpdate=!0,i=i.__parent},_refreshSingleMarkerModeMarkers:function(e){var t,i;for(t in e)i=e[t],this.hasLayer(i)&&i.setIcon(this._overrideMarkerIcon(i))}}),L.Marker.include({refreshIconOptions:function(e,t){var i=this.options.icon;return L.setOptions(i,e),this.setIcon(i),t&&this.__parent&&this.__parent._group.refreshClusters(this),this}})}(window,document);\r\n}\n",
"type": "application/javascript",
"title": "$:/plugins/sycom/leaflet/lib/leaflet-markercluster.js",
"module-type": "library"
},
"$:/plugins/sycom/leaflet/mapCssTweaks.css.tid": {
"created": "20161028202401905",
"modified": "20161111151011600",
"title": "$:/plugins/sycom/leaflet/mapCssTweaks.css.tid",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n/* add some styling tweaks to leaflet */\r\n.leaflet-right {\r\n\tmax-width:50%\r\n}\r\n.leaflet-popup-content h6 {\r\n\tfont-size:.7rem;\r\n\tmargin:0 0 .2rem 0\r\n}\n\n.leaflet-control-attribution {\r\n\theight:1.5em;\r\n}\r\n.leaflet-control-attribution:hover {\r\n\theight:auto;\r\n}\n\n.leaflet-top, .leaflet-bottom {\r\n z-index:999;\r\n}\n\n/* solve conflict between tw and leaflet */\r\n.leaflet-zoom-animated {max-width: initial !important}\n\n/* solve background image problem for layer control */\r\n.leaflet-control-layers-toggle {\r\n\tbackground-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20height%3D%2226%22%20width%3D%2226%22%3E%3Cpath%20d%3D%22M.032%2017.056l13-8%2013%208-13%208-13-8%22%20fill%3D%22%23b9b9b9%22/%3E%3Cpath%20d%3D%22M.032%2017.056l-.032.93%2013%208%2013-8%20.032-.93-13%208z%22%20fill%3D%22%23737373%22/%3E%3Cpath%20d%3D%22M0%2013.076l13-8%2013%208-13%208-13-8%22%20fill%3D%22%23cdcdcd%22/%3E%3Cpath%20d%3D%22M0%2013.076v.91l13%208%2013-8v-.91l-13%208z%22%20fill%3D%22%23737373%22/%3E%3Cpath%20d%3D%22M0%208.986l13-8%2013%208-13%208-13-8%22%20fill-opacity%3D%22.585%22%20stroke%3D%22%23797979%22%20stroke-width%3D%22.1%22%20fill%3D%22%23e9e9e9%22/%3E%3Cpath%20d%3D%22M0%208.986v1l13%208%2013-8v-1l-13%208z%22%20fill%3D%22%23737373%22/%3E%3C/svg%3E') !important\r\n}\n\n/* default polygon stylin */\r\n.polyline {fill:none}\r\n.leaflet-popup-content ul {padding:0 1em}\n\n/* some styling for clusters */\r\n.marker-cluster div {\r\n min-width:16px;min-height:16px;\r\n border-radius:50%;border:none;\r\n vertical-align:middle;text-align:center;font-weight:bold\r\n }\r\n.marker-cluster div div{width:100%;height:100%}\r\n.marker-cluster div span {display:block;text-shadow:0px 0px 6px #ffffff}\n\npath.leaflet-clickable {fill:<<colour primary>>;fill-opacity: 0.5;stroke:<<colour primary>>}\r\n.leaflet-marker-colored {fill:<<colour primary>>}\r\n"
},
"$:/plugins/sycom/leaflet/mapWidget.tid": {
"text": "/*\\\r\ncreated: 20151028202401905\r\nmodified: 20161106174011605\r\ntitle: $:/plugins/sycom/leaflet/mapWidget.tid\r\ntype: application/javascript\r\nmodule-type: widget\r\n\r\nA widget for displaying leaflet map in TiddlyWiki\r\n\r\n\\*/\r\n\r\n(function() {\r\n /* ----------------------- */\r\n /*jslint node: true, browser: true */\r\n /*global $tw: false */\r\n \"use strict\";\r\n var Widget = require(\"$:/core/modules/widgets/widget.js\").widget,\r\n L = require(\"$:/plugins/sycom/leaflet/lib/leaflet.js\"),\r\n markerClusterGroup = require(\"$:/plugins/sycom/leaflet/lib/leaflet-markercluster.js\");\r\n\r\n var mapWidget = function(parseTreeNode, options) {\r\n this.initialise(parseTreeNode, options);\r\n };\r\n\r\n // global vars\r\n var Map = [], // map collection\r\n map = 0, // map order number\r\n tn = 0, // tiddler number\r\n fCluster = [], // the clusters\r\n Colour = [], // the colors\r\n clusterRadius = [], // cluster radii\r\n clusterType = [], // clustering for whole map or for each tiddler\r\n lfltDefBounds = [\r\n [52.75, -2.55],\r\n [52.85, -2.65]\r\n ], // default bounds when nothing given\r\n bounds, // global bounds for map ?todo one per map?\r\n iter = [], // iteration indicator to avoid infinite loops\r\n setting = {}; // the map's settings\r\n\r\n /* Inherit from the base widget class */\r\n mapWidget.prototype = new Widget();\r\n\r\n /* Render this widget into the DOM */\r\n mapWidget.prototype.render = function(parent, nextSibling) {\r\n bounds = null;\r\n // Compute our attributes\r\n this.computeAttributes();\r\n // Get the base settings for rendering : width / height (default : 100% / 500px)\r\n // !todo : make a settings tidller in order to let user set it for the whole wiki (may be inspired from roadtree)\r\n // !todo what happens if windows is resized?\r\n var width = this.getAttribute(\"width\", \"100%\"),\r\n height = this.getAttribute(\"height\", \"420px\");\r\n // creating the div container\r\n var div = this.document.createElement(\"div\");\r\n div.setAttribute(\"id\", \"lfltMap-\" + map);\r\n div.setAttribute(\"style\", \"width:\" + width + \";height:\" + height);\r\n // Save the parent dom node\r\n this.parentDomNode = parent;\r\n // Compute our attributes\r\n // this.computeAttributes();\r\n // create the container\r\n parent.insertBefore(div, nextSibling);\r\n this.domNodes.push(div);\r\n // Create the map\r\n this.createMap();\r\n // Execute our logic\r\n this.execute();\r\n // increment map number indicator\r\n map += 1;\r\n };\r\n\r\n /* Create the map for the widget */\r\n mapWidget.prototype.createMap = function(parent, nextSibling) {\r\n // create the leaflet and push it to #lfltMap\r\n Map[map] = L.map('lfltMap-' + map);\r\n // Install base tile layer (if none provided, default is \"osm\")\r\n // get tilelayers from JSON\r\n var fonds = JSON.parse(this.wiki.getTiddlerText(\"$:/plugins/sycom/leaflet/lib/tileLayers.json\"));\r\n // create tile layers list object from json list\r\n var Tiles = []; // leaflet tile layers\r\n var tiles = {}; // tile identifier for control\r\n // look for tile parameter\r\n setting.tile = this.getAttribute(\"tile\", \"osm\");\r\n setting.marker = this.getAttribute(\"marker\", null);\r\n // create tile layer list\r\n for (var i in fonds) {\r\n if (i == setting.tile || fonds[i].id == setting.tile) {\r\n setting.tile = fonds[i].id;\r\n }\r\n var couche = new L.TileLayer(fonds[i].url, {\r\n attribution: fonds[i].attrib,\r\n minZoom: fonds[i].zMin,\r\n maxZoom: fonds[i].zMax,\r\n unloadInvisibleTiles: true\r\n });\r\n Tiles[fonds[i].id] = couche;\r\n tiles[fonds[i].nom] = couche;\r\n }\r\n // if user entered a wrong tile id\r\n if (Tiles[setting.tile] === undefined) {\r\n setting.tile = \"osm\";\r\n $tw.utils.error(\"Seems you entered a wrong tile id, displayed osm instead. Please refer to plugin documentation to avoid this - error : \" + error);\r\n }\r\n Tiles[setting.tile].addTo(Map[map]);\r\n // install tile layer control if needed\r\n setting.tileControl = this.getAttribute(\"tileControl\");\r\n if (setting.tileControl) {\r\n var tControl = L.control.layers(tiles);\r\n tControl.addTo(Map[map]);\r\n }\r\n /* !todo to come next (will have to implement leaflet.draw extension)\r\n // look for draw parameter\r\n setting.drawControl = this.getAttribute(\"drawControl\");\r\n if (setting.drawControl) {\r\n // Initialize the FeatureGroup to store editable layers\r\n var drawnItems = new L.FeatureGroup();\r\n Map[map].addLayer(drawnItems);\r\n // Initialize the draw control and pass it the FeatureGroup of editable layers\r\n var drawControl = new L.Control.Draw({\r\n edit: {\r\n featureGroup: drawnItems\r\n }\r\n }\r\n );\r\n Map[map].addControl(drawControl);\r\n }\r\n*/\r\n };\r\n\r\n /* Compute the internal state of the widget */\r\n mapWidget.prototype.execute = function() {\r\n // getting wiki primary color\r\n // check if you defined a tiddler name for palette but no tiddler with that\r\n if(this.wiki.getTiddlerData(this.wiki.getTiddlerText(\"$:/palette\"))) Colour.wiki = this.wiki.getTiddlerData(this.wiki.getTiddlerText(\"$:/palette\")).primary;\r\n // switch back to basic blue\r\n else Colour.wiki = \"#5778d8\";\r\n\r\n // switch back to basic tiddlywiki blue if primary is defined from another color\r\n /* notes to upgrade this process\r\n if primaire is <<colour xxxx>> set to default gray\r\n if primaire.match(\"<<\") primaire=\"#555\"; */\r\n if (Colour.wiki.match(/</g)) Colour.wiki = \"#5778d8\";\r\n\r\n // getting style parameters\r\n var style = this.getAttribute(\"style\", undefined);\r\n var st;\r\n // case style defined\r\n if(style !== undefined) {\r\n st = JSON.parse(style);\r\n // color parameter will overwrite style color and style fillColor parameter\r\n if(st.fillColor) Colour[map] = this.getAttribute(\"color\", st.fillColor);\r\n else Colour[map] = this.getAttribute(\"color\", st.color);\r\n }\r\n // case style undefined\r\n else {\r\n st = null;\r\n // checking if user defined a color if no color go undefined\r\n Colour[map] = this.getAttribute(\"color\", undefined);\r\n }\r\n // create default icon\r\n // ?todo: only if there are points to display?\r\n L.icon.default = lfltIcon(setColor(null, map), setting.marker, map);\r\n\r\n // create whole map cluster\r\n // getting cluster size parameter, if exists\r\n clusterRadius[map] = this.getAttribute(\"cluster\", 80);\r\n clusterType[map] = this.getAttribute(\"clusterType\", \"map\");\r\n if (clusterRadius[map] === 0 || clusterType[map] == \"tiddler\") {\r\n // if clusterRadius null or clustering by tiddler, no whole clustering\r\n fCluster[map] = L.featureGroup();\r\n } else {\r\n // creating a cluter group for whole map\r\n fCluster[map] = L.markerClusterGroup({\r\n name: \"Cluster\" + map,\r\n polygonOptions: {\"weight\":\"0.5\"},\r\n maxClusterRadius: clusterRadius[map],\r\n /* for the record. may be a function\r\n function() {return (clusterRadius - 50) / 9 * Map[map].getZoom() + 50 - (clusterRadius - 50) / 9 },*/\r\n iconCreateFunction: createCluster\r\n });\r\n }\r\n // Get the declared places from the attributes\r\n var places = this.getAttribute(\"places\", undefined);\r\n var feature = L.featureGroup();\r\n // Render the map\r\n if (places) mapPlaces(this,\r\n JSON.parse(places),\r\n Map[map],\r\n fCluster[map],\r\n null,\r\n Colour[map],\r\n this.getAttribute(\"marker\"),\r\n st\r\n );\r\n\r\n // set map to objects bounds\r\n if (bounds) {\r\n Map[map].fitBounds(bounds);\r\n } else {\r\n bounds = lfltDefBounds;\r\n Map[map].fitBounds(bounds);\r\n }\r\n // if lat long zoom settings, overwrite bounds\r\n setting.lat = this.getAttribute(\"lat\");\r\n setting.lg = this.getAttribute(\"long\");\r\n setting.zoom = this.getAttribute(\"zoom\");\r\n // overwrite lat and long center\r\n if (setting.lat && setting.long) {\r\n Map[map].setView([setting.lat, setting.lg]);\r\n }\r\n // overwrite zoom\r\n if (setting.zoom) {\r\n Map[map].setZoom(setting.zoom);\r\n }\r\n };\r\n\r\n // mapping a places json object (parent object, places json object, destination feature, destination cluster, popup for base objects, ands style parameters : color, marker, json style)\r\n function mapPlaces(obj, plcs, feat, clust, pop, col, mark, style) {\r\n // create feature for this mapping turn\r\n var feature = L.featureGroup();\r\n // case 1 : data in a tiddler\r\n if (plcs.tiddler) {\r\n // if no tiddler is given (single space) map current Tiddler\r\n // !todo would be much better if so when no attribute at all...\r\n if (plcs.tiddler == \" \") {\r\n mapTiddler(obj, obj.getVariable(\"currentTiddler\"), feature, clust, pop, col, mark, style);\r\n }\r\n // else, map the given tiddler\r\n else {\r\n // get data fields in the tiddler, let's seek for geo data\r\n mapTiddler(obj, plcs.tiddler, feature, clust, pop, col, mark, style);\r\n }\r\n }\r\n // case 2 : data in multiple tiddlers\r\n if (plcs.tiddlers) {\r\n mapTiddlers(obj, plcs.tiddlers, feature, clust, pop, col, mark, style);\r\n }\r\n // case 3 : data in tiddlers following a filter\r\n if (plcs.filter) {\r\n mapFilter(obj, plcs.filter, feature, clust, pop, col, mark, style);\r\n }\r\n // case 4 : data are directly listed in places (point(s) - polygon - polyline - geojson)\r\n // for each we will\r\n // - use dedicated function to populate mapping turn layer\r\n // - add layer to map\r\n if (plcs.point) {\r\n // add the point to the cluster layer\r\n mapPoint(plcs.point, clust, pop, col, mark);\r\n // add the cluster layer to map\r\n feature.addLayer(clust);\r\n // set bounds\r\n }\r\n if (plcs.points) {\r\n // ?todo : create a cluster for those points if clusterType == \"tiddler\"\r\n mapPoints(plcs.points, clust, pop, col, mark);\r\n feature.addLayer(clust);\r\n }\r\n if (plcs.polygon) {\r\n var polygFeat = L.featureGroup();\r\n mapPolyg(plcs.polygon, polygFeat, pop, col, style);\r\n polygFeat.addTo(feature);\r\n }\r\n if (plcs.polygons) {\r\n var polygsFeat = L.featureGroup();\r\n mapPolygs(plcs.polygons, polygsFeat, pop, col, style);\r\n polygsFeat.addTo(feature);\r\n }\r\n if (plcs.polyline) {\r\n var polylFeat = L.featureGroup();\r\n mapPolyl(plcs.polyline, polylFeat, pop, col, style);\r\n polylFeat.addTo(feature);\r\n }\r\n if (plcs.polylines) {\r\n var polylsFeat = L.featureGroup();\r\n mapPolyls(plcs.polylines, polylsFeat, pop, col, style);\r\n polylsFeat.addTo(feature);\r\n }\r\n if (plcs.geojson) {\r\n // !todo : create a cluster for those points if clusterType == \"tiddler\"\r\n var geojsonFeat = L.featureGroup();\r\n mapGeoJson(plcs.geojson, geojsonFeat, clust, col, mark, style);\r\n geojsonFeat.addTo(feat);\r\n }\r\n // add feature to map\r\n feature.addTo(feat);\r\n extBounds(feature);\r\n }\r\n\r\n // add a marker for a point\r\n function mapPoint(coord, clust, pop, col, mark) {\r\n try {\r\n var location = coord.split(\",\");\r\n } catch (err) {displayError(\"point coord error\", err);}\r\n try {\r\n var marker = L.marker(location, {\r\n icon: lfltIcon(col, mark, map)\r\n });\r\n if (pop) marker.bindPopup(pop);\r\n\t\t\tif (clust.count) clust.count +=1;\r\n\t\t\telse clust.count = 1;\r\n clust.addLayer(marker);\r\n } catch (err) {displayError(\"point marker error\", err);}\r\n }\r\n // add a marker serie for a points list\r\n function mapPoints(list, clust, pop, col, mark) {\r\n var Points = list.split(\" \");\r\n for (var pt in Points) {\r\n mapPoint(Points[pt], clust, pop, col, mark);\r\n }\r\n }\r\n\r\n // add a polygon\r\n function mapPolyg(list, feat, pop, col, st) {\r\n var Coords = list.split(\" \");\r\n var Shape = [];\r\n try {\r\n for (var nd in Coords) {\r\n var location = Coords[nd].split(\",\");\r\n Shape.push(location);\r\n }\r\n } catch (err) {\r\n displayError(\"polygone\", err);\r\n }\r\n try {\r\n var polygon = L.polygon(Shape, {\r\n color: setColor(col, map)\r\n });\r\n if (st) polygon.setStyle(checkStyle(st, col));\r\n if (pop) polygon.bindPopup(pop);\r\n polygon.addTo(feat);\r\n } catch (err) {\r\n displayError(\"polygone\", err);\r\n }\r\n }\r\n // add a polygons collection\r\n function mapPolygs(collec, feat, pop, col, st) {\r\n var Polys = collec.split(\"|\");\r\n for (var pg in Polys) {\r\n mapPolyg(Polys[pg], feat, pop, col, st);\r\n }\r\n }\r\n // add a polyline\r\n function mapPolyl(list, feat, pop, col, st) {\r\n var Coords = list.split(\" \");\r\n var Line = [];\r\n try {\r\n for (var nd in Coords) {\r\n var location = Coords[nd].split(\",\");\r\n Line.push(location);\r\n }\r\n } catch (err) {\r\n displayError(\"polyline\", err);\r\n }\r\n try {\r\n var polyline = L.polyline(Line, {\r\n color: setColor(col,map)\r\n });\r\n if (st) polyline.setStyle(checkStyle(st, col));\r\n if (pop) polyline.bindPopup(pop);\r\n // add polyline class in order to make fill transparent\r\n polyline.setStyle({\r\n \"className\": \"polyline\"\r\n }).addTo(feat);\r\n } catch (err) {\r\n displayError(\"polyline\", err);\r\n }\r\n }\r\n // add a polylines collection\r\n function mapPolyls(collec, feat, pop, col, st) {\r\n var Lines = collec.split(\"|\");\r\n for (var ln in Lines) {\r\n mapPolyl(Lines[ln], feat, pop, col, st);\r\n }\r\n }\r\n\r\n // add a geojson set\r\n function mapGeoJson(geojson, feat, clust, col, mark, st) {\r\n console.log(col);\r\n try {\r\n var data = JSON.parse(geojson);\r\n var geoJson = L.geoJSON(data, {\r\n // adding style\r\n style: function (feature) {\r\n // get feature style only if style is not injected\r\n // ?todo : only overwrite injected values?\r\n if (st === undefined || st === null) {\r\n st = {};\r\n if(feature.properties.style !== undefined) st = feature.properties.style;\r\n }\r\n // get feature properties style if exists\r\n if(feature.properties.color !== undefined) {\r\n st.color = feature.properties.color;\r\n st.fillColor = st.color;\r\n }\r\n // color parameter overwrite style color if exists\r\n if (col !== undefined && col !== null) {\r\n st.color = col;\r\n st.fillColor = col;\r\n }\r\n // if no color is defined at the end, fallback\r\n if (st.color === undefined) {\r\n col = setColor(col, map);\r\n st.color = col;\r\n st.fillColor = col;\r\n }\r\n return st;\r\n },\r\n onEachFeature: function (feature, layer) {\r\n layer.bindPopup(jsonPop(feature));\r\n },\r\n // adding points\r\n pointToLayer: function(geoJsonPoint, latlng) {\r\n // working to get color (from properties)\r\n var cl;\r\n if(geoJsonPoint.properties.color !== undefined) cl = geoJsonPoint.properties.color;\r\n if(geoJsonPoint.properties.fillColor !== undefined) cl = geoJsonPoint.properties.fillColor;\r\n if(col !== undefined && col !== null) cl = col;\r\n // binding default icon\r\n var jsonPoint = L.marker(latlng, {\r\n icon: lfltIcon(cl, mark, map)\r\n });\r\n jsonPoint.bindPopup(jsonPop(geoJsonPoint));\r\n\t\t\t\t\tif (clust.count) clust.count +=1;\r\n\t\t\t\t\telse clust.count = 1;\r\n clust.addLayer(jsonPoint);\r\n }\r\n });\r\n\r\n // ?todo : should we add clust to feat or to geoJson? should we add clust even if it's already here?\r\n feat.addLayer(clust);\r\n feat.addLayer(geoJson);\r\n } catch (error) {displayError(\"there was an error when displaying geoJson. error : \", error);}\r\n }\r\n\r\n // map a tiddler\r\n function mapTiddler(obj, tid, feat, clust, pop, col, mark, style) {\r\n if(iter.map.tid === undefined) iter.map.tid = 1;\r\n else iter.map.tid +=1;\r\n if(iter.map.tid < 4242) {\r\n // get data fields in the tiddler, let's seek for geo data\r\n var flds = obj.wiki.getTiddler(tid).fields,\r\n feature = L.featureGroup(), // create the tiddler feature\r\n popup = \"\"; // create the popup text\r\n // setting marker, color, style\r\n // if no marker injected, trying to get from tiddler\r\n if(mark === null || mark === undefined) {\r\n if(flds.marker) mark = flds.marker;\r\n }\r\n // working style and color together\r\n var cl, st = {};\r\n // style\r\n if(flds.style) st = JSON.parse(flds.style);\r\n // overwrite with injected values\r\n if (style !== undefined && style !== null) {\r\n st = style;\r\n /* ?todo : should we overwrite only injected?\r\n \tfor (var v in st) {\r\n if(style.v !== undefined) st.v = style.v;\r\n }\r\n \tfor (var v in style) {\r\n \t}*/\r\n }\r\n // color\r\n if (flds.color) cl = flds.color;\r\n // overwrite with injected color style if exists\r\n if (style !== undefined && style !== null) {\r\n if (st.fillColor !== undefined) cl = st.fillColor\r\n }\r\n // overwrite with injected color also in style\r\n if (col !== undefined && col !== null) {\r\n cl = col;\r\n st.color = cl; st.fillColor = cl;\r\n }\r\n Colour[\"t\" + tn] = cl;\r\n // if clusterType is tiddler, creating a cluster group for tiddler\r\n // also will have to deal with the filter / tiddler distinction\r\n if (clusterType[map] == \"tiddler\") {\r\n // ?todo : automate cluster creation?\r\n fCluster[\"t\" + tn] = L.markerClusterGroup({\r\n name: \"Cluster\" + map + \"Cluster\" + tn,\r\n polygonOptions: {\"weight\":\"0.5\"},\r\n maxClusterRadius: clusterRadius[map],\r\n /* for the record. may be a function\r\n function() {return (clusterRadius - 50) / 9 * Map[map].getZoom() + 50 - (clusterRadius - 50) / 9 },*/\r\n iconCreateFunction: createCluster\r\n });\r\n } else {\r\n fCluster[\"t\" + tn] = fCluster[map];\r\n }\r\n\r\n // case 1 : data stored in a json tiddler\r\n if (flds.type == \"application/json\") {\r\n // for now, assuming any json stored data is geoJson...\r\n var data = obj.wiki.getTiddlerText(tid);\r\n mapGeoJson(data, feature, fCluster[\"t\" + tn], Colour[\"t\" + tn], mark, st);\r\n feat.addLayer(feature);\r\n }\r\n // case 2 if tiddler is not JSON data, display tiddler stored geodata as point(s), polygon, polyline...\r\n else {\r\n // create the popup for base objects\r\n popup = \"<h4><a href=\\\"#\" + encodeURIComponent(flds.title) + \"\\\">\" + flds.title + \"</a></h4>\";\r\n var content = \"\";\r\n if (flds.text !== \"\") {\r\n // if tiddler contains a widget, avoid html rendering\r\n if (flds.text.match(/<\\$leafmap/)) {\r\n content += \"<pre>\" + flds.text + \"</pre>\";\r\n }\r\n // else render\r\n else {\r\n content += obj.wiki.renderTiddler(\"text/html\", tid).substring(0, 420);\r\n }\r\n }\r\n // adding a link to the tiddler\r\n content += \"<br/>(<a href=\\\"#\" + encodeURIComponent(flds.title) + \"\\\" title=\\\"read more...\\\">...</a>)\";\r\n popup += content;\r\n\r\n // map recursively (!!! danger !!!)\r\n mapPlaces(obj,\r\n flds,\r\n feature,\r\n fCluster[\"t\" + tn],\r\n popup,\r\n cl,\r\n mark,\r\n st\r\n );\r\n feature.addTo(feat);\r\n }\r\n /*\r\n// check if anything was rendered before binding popup\r\n if (wasRendered == 0) console.log(\"tw-leaflet-map-plugin > non geotiddler was listed and not rendered : \" + flds.title);\r\n // add the layer to the feature\r\n feature.addLayer(subFeat);\r\n feature.addTo(Map[map]); // layer.addTo(Map[map]);\r\n } */\r\n // get layer bounds for automatic zoom\r\n extBounds(feature);\r\n tn++;\r\n }\r\n // it tiddler rendered two many times for same map. Stoping and error launch\r\n else $tw.utils.error(\"tiddler [[\" + tid + \"]] was rendered more than 4242 times in this map. Please double check circular dependencies...\");\r\n }\r\n\r\n // map a tiddler collection\r\n function mapTiddlers(obj, list, feat, clust, pop, col, mark, style) {\r\n var Tids = list.split(\" \");\r\n for (var td in Tids) {\r\n mapTiddler(obj, Tids[td], feat, clust, pop, col, mark, style);\r\n }\r\n }\r\n\r\n // map tiddlers with a filter\r\n function mapFilter(obj, filter, feat, clust, pop, col, mark, style) {\r\n try {\r\n var Tids = obj.wiki.filterTiddlers(filter);\r\n for (var td in Tids) {\r\n mapTiddler(obj, Tids[td], feat, clust, pop, col, mark, style);\r\n }\r\n } catch (error) {\r\n $tw.utils.error(\"sorry there was something wrong when trying to map your filter. error : \" + error);\r\n }\r\n }\r\n\r\n // icon url creator\r\n function iconUrl(col, tid, m) {\r\n var icone = escape($tw.wiki.renderTiddler(\"text/html\", tid).replace(\"$primary$\", setColor(col, m)).replace(\"</p>\", \"\").replace(\"<p>\", \"\"));\r\n return ('data:image/svg+xml;charset=UTF-8,' + icone);\r\n }\r\n\r\n // create marker\r\n // ?todo only if there are points to display;\r\n function lfltIcon(col, tid, m) {\r\n // checking if marker is defined. Fallback to default\r\n if(tid === undefined || tid === null) tid = \"$:/plugins/sycom/leaflet/images/marker.svg\";\r\n else tid = \"$:/plugins/sycom/leaflet/images/\" + tid + \".svg\";\r\n if($tw.wiki.getTiddler(tid) === undefined) tid = \"$:/plugins/sycom/leaflet/images/marker.svg\";\r\n // !todo create shadow from icon by transform matrix?\r\n var shad = tid.split(\".svg\")[0] + \"shadow.svg\",\r\n shadowUrl = 'data:image/svg+xml;charset=UTF-8,' + escape($tw.wiki.getTiddlerText(shad));\r\n // get dimensions in tiddler\r\n var MarkDim = $tw.wiki.getTiddler(tid).fields.marker_dim.split(\" \");\r\n var ShadDim = $tw.wiki.getTiddler(shad).fields.marker_dim.split(\" \");\r\n var theIcon = L.icon({\r\n iconUrl: iconUrl(col, tid, m),\r\n iconRetinaUrl: iconUrl(col, tid, m),\r\n iconSize: [MarkDim[0], MarkDim[1]],\r\n iconAnchor: [MarkDim[2], MarkDim[3]],\r\n popupAnchor: [0, -MarkDim[3]],\r\n shadowUrl: shadowUrl,\r\n shadowRetinaUrl: shadowUrl,\r\n shadowSize: [ShadDim[0], ShadDim[1]],\r\n shadowAnchor: [ShadDim[2], ShadDim[3]]\r\n });\r\n return theIcon;\r\n }\r\n\r\n // set color with fallback to map color or wiki...\r\n function setColor(col, m) {\r\n if(m === undefined) m = map;\r\n if (col === undefined || col === null) col = Colour[m];\r\n if (col === undefined || col === null) col = Colour.wiki;\r\n return col;\r\n }\r\n\r\n // set style with fallback to map color or wiki...\r\n function checkStyle(sty, col) {\r\n if (col === undefined || col === null) {\r\n if(sty.color === undefined) sty.color = setColor(col, map);\r\n if(sty.fillColor === undefined) sty.fillColor = setColor(col, map);\r\n }\r\n else {\r\n sty.color = col;\r\n sty.fillColor = col;\r\n }\r\n return sty;\r\n }\r\n\r\n // coordinate error message\r\n function displayError(objectType, error) {\r\n $tw.utils.error(\"there was an error when mapping a \" + objectType + \" - error : \" + error);\r\n }\r\n\r\n // adjust bounds to layer\r\n function extBounds(feat) {\r\n try {\r\n if (bounds) {\r\n bounds.extend(feat.getBounds());\r\n } else {\r\n if (feat.getBounds()._northEast) {\r\n bounds = feat.getBounds();\r\n }\r\n }\r\n } catch (error) {\r\n $tw.utils.error(\"there was an error when trying to zoom on bounds. error : \" + error);\r\n }\r\n }\r\n\r\n // cluster icon creation\r\n function createCluster(clust) {\r\n // getting back map number\r\n var m = this.name.split(\"Cluster\")[1],\r\n t = this.name.split(\"Cluster\")[2],\r\n zC = Map[m].getZoom(),\r\n z0,cTot,cCol,cOpa;\r\n // checking object density mean for the map\r\n if (t === undefined) {\r\n if (fCluster[m].z0 === undefined) fCluster[m].z0 = zC;\r\n z0 = fCluster[m].z0;\r\n if (fCluster[m].count === undefined) fCluster[m].count = 1;\r\n cTot = fCluster[m].count;\r\n cCol = setColor(Colour[m],m);\r\n cOpa = 0.85\r\n }\r\n else {\r\n if (fCluster[\"t\" + t].z0 === undefined) fCluster[\"t\" + t].z0 = zC;\r\n z0 = fCluster[\"t\" + t].z0;\r\n if (fCluster[\"t\" + t].count === undefined) fCluster[\"t\" + t].count = 1;\r\n cTot = fCluster[\"t\" + t].count;\r\n cCol = setColor(Colour[\"t\" + t],m);\r\n cOpa = 0.65\r\n }\r\n // cluster icon size will be based on item number and zoom\r\n // !todo: use density to get a more \"local\" percentage before calculating size\r\n var cC = clust.getChildCount(),\r\n cS = 20 * Math.log(clusterRadius[m]) * (1 + Math.log(cTot)/Math.max(cTot * Math.pow(2,zC-z0),Math.log(cTot))) * (1 - 1 / ((Math.log(cTot) / cTot) * Math.pow(2,zC-z0) * cC + 1));\r\n if (cS < 34) cS = 34;\r\n var cF; // font size of cluster text\r\n if (cC > 9999) cF = cS / 3;\r\n else {if (cC > 999) cF = cS / 3.5;\r\n else cF = cS / 2}\r\n if (cF < 12) cF = 12;\r\n // creating icon. Checking tiddler or whole clustering before\r\n return new L.DivIcon({\r\n html: '<div style=\"width:' + cS + 'px;height:' + cS + 'px;font-size:' + cF + 'px;background-color:' + cCol + ';border-color:' + cCol + ';opacity:'+cOpa+'\"><div><span style=\"line-height:' + cS + 'px;opacity:'+(cOpa+0.12)+'\">' + cC + \"</span></div></div>\",\r\n className: \"marker-cluster marker-cluster-\" + cC,\r\n iconSize: new L.Point(cS, cS)\r\n });\r\n }\r\n\r\n // popup function for Json\r\n function jsonPop(feat) {\r\n // extracting data to create popup (all non-null data!)\r\n var Prop = feat.properties,\r\n jsontitle = \"\",\r\n jsondesc = \"\",\r\n jsonhtml = \"\";\r\n // testing if properties title or name exists\r\n if (Prop.name) jsontitle += Prop.name + \" \";\r\n if (Prop.title) jsontitle += Prop.title + \" \";\r\n if (Prop.description) jsondesc += Prop.description + \"\";\r\n // populating other data\r\n // if we got a title\r\n if (jsontitle !== \"\") {\r\n jsonhtml += \"<h4>\" + jsontitle + \"</h4>\";\r\n // if we got a description let's give it\r\n if (jsondesc !== \"\") jsonhtml += jsondesc;\r\n else {\r\n jsonhtml+= \"<ul>\";\r\n for (var p in Prop) {\r\n if (Prop[p] !== null && Prop[p] !== \"\" && p != \"name\" && p != \"title\") jsonhtml += \"<li>\" + p + \" : \" + Prop[p] + \"</li>\";\r\n }\r\n jsonhtml += \"</ul>\";\r\n }\r\n }\r\n // if we have no title, giving one with first fields\r\n else {\r\n // in case we've got a description. Stop after title\r\n if (jsondesc !== \"\") {\r\n for (var pr in Prop) {\r\n // if title is really to short (as an id), taking next field\r\n if (jsontitle.length < 8) jsontitle += Prop[pr] + \" \";\r\n else break;\r\n }\r\n jsonhtml = \"<h4>\" + jsontitle + \"</h4>\" + jsonhtml;\r\n }\r\n else {\r\n for (var po in Prop) {\r\n // if title is really to short (as an id), taking next field\r\n if (jsontitle.length < 4) jsontitle += Prop[po] + \" \";\r\n else {\r\n if (Prop[po] !== null && Prop[po] !== \"\") jsonhtml += \"<li>\" + po + \" : \" + Prop[po] + \"</li>\";\r\n }\r\n }\r\n jsonhtml = \"<h4>\" + jsontitle + \"</h4><ul>\" + jsonhtml + \"</ul>\";\r\n }\r\n }\r\n return jsonhtml;\r\n }\r\n\r\n exports.leafmap = mapWidget;\r\n\r\n})();\r\n/*\r\nMISC NOTES for later\r\nJSON.parse(tiddler.fields.text);\r\nvar jsonData = this.wiki.getTiddlerAsJson(this.to),\r\n*/\r\n",
"created": "20151028202401905",
"modified": "20161106174011605",
"title": "$:/plugins/sycom/leaflet/mapWidget.tid",
"type": "application/javascript",
"module-type": "widget"
},
"$:/plugins/sycom/leaflet/readme": {
"created": "20151119173416000",
"modified": "20161111173050000",
"title": "$:/plugins/sycom/leaflet/readme",
"type": "text/vnd.tiddlywiki",
"caption": "Readme",
"text": "The [[leaflet plugin|$:/plugins/sycom/leaflet]] is work in progress integration of the [[leaflet|http://leafletjs.com/]] library lib in TiddlyWiki in order to display geographical purpose tiddlers. ''Be careful, entering wrong coordinates may cause unwanted behaviour''.\n\nFor now `<$leafmap />` widget displays an interactive map, select size, location and zoom, clustering distance, and background. You can display data : geojson, point(s), polygon(s) and/or polyline(s) directly or calling [[GeoTiddler]](s). Tiddler can be called individually, by list or with a [[filter|Filters]].\n\nHave a look at [[demo page on the web|http://sycom.github.io/TiddlyWiki-Plugins/#A%20plugin%20collection:%5B%5BA%20plugin%20collection%5D%5D%20%5B%5BLeaflet%20plugin%5D%5D]] or at local [[usage|$:/plugins/sycom/leaflet/usage]] and [[example|$:/plugins/sycom/leaflet/example]] informations if you want to test.\n\nKeep in mind that the plugin might be buggy or imperfect. Please [[report any comment or issue|https://framagit.org/sycom/TiddlyWikiPlugins/issues]] on main repo. Source code at [[https://framagit.org/sycom/TiddlyWikiPlugins]] on framagit ([[framasoft|https://framasoft.org/]] gitlab instance) see `leaflet` branch for latest draft version.\r\n"
}
}
}